| 5 | export type Placement = 'left' | 'top' | 'right' | 'bottom' |
| 6 | |
| 7 | interface DrawerProps { |
| 8 | open?: boolean |
| 9 | placement?: Placement |
| 10 | onClose?: () => void |
| 11 | children?: React.ReactNode |
| 12 | classNames?: string |
| 13 | } |
| 14 | |
| 15 | const transitionDirectionMap = { |
| 16 | left: '-translate-x-full', |
nothing calls this directly
no outgoing calls
no test coverage detected