We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb2621 commit f169871Copy full SHA for f169871
src/components/ui/input-with-button.tsx
@@ -40,6 +40,7 @@ const InputWithButton = (props: InputWithButtonProps) => {
40
variant,
41
mutable,
42
nameKey,
43
+ className,
44
...inputProps
45
} = props;
46
@@ -63,7 +64,7 @@ const InputWithButton = (props: InputWithButtonProps) => {
63
64
<input
65
{...inputProps}
66
value={props.value ?? ""}
- className={classNames(`w-full bg-transparent focus:outline-none ${inputProps.className}`)}
67
+ className={classNames("w-full bg-transparent focus:outline-none",className)}
68
readOnly={!mutable || !inputProps.onChange}
69
name={"input" + nameKey}
70
/>
0 commit comments