9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
export function useDrawerDefaultProps(props) {
|
|
const { open = false, size = 'small', position = 'start' } = props;
|
|
return {
|
|
size,
|
|
position,
|
|
open
|
|
};
|
|
}
|