import React from 'react'; import Portal from '../Portal'; import { Slide, Wrapper } from './styled'; type Props = { anchor?: 'left' | 'top' | 'right' | 'bottom'; children: React.ReactNode; open?: boolean; zIndex?: number; }; const Drawer: React.FC = ({ anchor = 'bottom', children, open = false, zIndex = 3, }: Props) => ( {children} ); export default Drawer;