Skip to content

Commit 80f4267

Browse files
committed
Fixed build
1 parent 7e4844a commit 80f4267

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/shadcn/src/form/TextInput.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ export const TextInput = forwardRef<
3737
className,
3838
"bn-flex bn-h-10 bn-w-full bn-rounded-md bn-border bn-border-input bn-bg-background bn-px-3 bn-py-2 bn-text-sm bn-ring-offset-background file:bn-border-0 file:bn-bg-transparent file:bn-text-sm file:bn-font-medium placeholder:bn-text-muted-foreground focus-visible:bn-outline-none focus-visible:bn-ring-2 focus-visible:bn-ring-ring focus-visible:bn-ring-offset-2 disabled:bn-cursor-not-allowed disabled:bn-opacity-50",
3939
"bn-items-center bn-gap-2 bn-text-foreground",
40-
)}>
40+
)}
41+
>
4142
{icon}
4243
<div className="bn-flex-1">
4344
{label && (
@@ -56,6 +57,7 @@ export const TextInput = forwardRef<
5657
onKeyDown={onKeyDown}
5758
onChange={onChange}
5859
onSubmit={onSubmit}
60+
ref={ref}
5961
/>
6062
</div>
6163
{rightSection}

0 commit comments

Comments
 (0)