diff --git a/src/components/form-field/listbox/listbox.tsx b/src/components/form-field/listbox/listbox.tsx index d1c53336..0ae4675f 100644 --- a/src/components/form-field/listbox/listbox.tsx +++ b/src/components/form-field/listbox/listbox.tsx @@ -18,12 +18,15 @@ export interface ListboxProps { children: React.ReactNode; value: TValue; onChange: (value: TValue) => void; + className?: string; } -const Listbox = ({ children, value, onChange }: ListboxProps) => { +const Listbox = ({ children, value, onChange, className }: ListboxProps) => { return ( -
{children}
+
+ {children} +
); };