diff --git a/packages/core-components/src/components/Select/Select.tsx b/packages/core-components/src/components/Select/Select.tsx index ff98189b09..7229f89653 100644 --- a/packages/core-components/src/components/Select/Select.tsx +++ b/packages/core-components/src/components/Select/Select.tsx @@ -134,6 +134,7 @@ export type SelectProps = { triggerReset?: boolean; native?: boolean; disabled?: boolean; + margin?: 'dense' | 'none'; }; /** @public */ @@ -148,6 +149,7 @@ export function SelectComponent(props: SelectProps) { triggerReset, native = false, disabled = false, + margin, } = props; const classes = useStyles(); const [value, setValue] = useState( @@ -206,7 +208,7 @@ export function SelectComponent(props: SelectProps) { data-testid="select" displayEmpty multiple={multiple} - margin="dense" + margin={margin} onChange={handleChange} onClick={handleClick} open={isOpen}