diff --git a/src/components/select/SelectWithDeco.tsx b/src/components/select/SelectWithDeco.tsx index bef19cf5..4ebb779f 100644 --- a/src/components/select/SelectWithDeco.tsx +++ b/src/components/select/SelectWithDeco.tsx @@ -36,6 +36,7 @@ type InputWithDecoProps = { isMulti?: boolean; noInput?: boolean; loading?: boolean; + maxWidth?: string; callback: (value: ValueProp[]) => void; }; @@ -46,6 +47,7 @@ export const SelectWithDeco: React.FC = ({ options, isMulti, loading, + maxWidth, callback, }) => { const renderContent = () => { @@ -56,7 +58,7 @@ export const SelectWithDeco: React.FC = ({ return (