We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a71a1f commit e11fc2cCopy full SHA for e11fc2c
packages/components/src/components/Input/index.tsx
@@ -17,6 +17,7 @@ interface InputProps extends Omit<ComponentProps<'input'>, 'type'> {
17
errorMessage?: string
18
allowClear?: boolean
19
classNames?: {
20
+ container?: string
21
input?: string
22
icon?: string
23
@@ -66,6 +67,7 @@ export function Input({
66
67
68
return (
69
<Box
70
+ className={classNames?.container}
71
display="inline-block"
72
pos="relative"
73
selectors={{ '&,&>*': { boxSizing: 'border-box' } }}
0 commit comments