import { getSize, TWSize } from '@app/styles/tw' import { FC, PropsWithChildren } from 'react' export const StateLessDrawer: FC< PropsWithChildren<{ size?: TWSize index?: number }> > = ({ children, size = 'lg' }) => { return (
{children}
) }