diff --git a/src/Components/SelectInput/SelectInput.tsx b/src/Components/SelectInput/SelectInput.tsx index cad2228..39636cb 100644 --- a/src/Components/SelectInput/SelectInput.tsx +++ b/src/Components/SelectInput/SelectInput.tsx @@ -14,6 +14,7 @@ interface SelectProps { options: Option[]; selectedKey?: string; className?: string; + wrapperClassName?: string; onChange?: (selectedOption: Option) => void; props?: React.DetailedHTMLProps, HTMLSelectElement>; } @@ -26,6 +27,7 @@ const SelectInput: React.FC = ({ required = false, selectedKey, className, + wrapperClassName, onChange, ...props }) => { @@ -47,7 +49,7 @@ const SelectInput: React.FC = ({ }; return ( -
+
{label && (