UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

11 lines (10 loc) 332 B
import React from 'react'; import { DrawerPlacement } from "./helper"; interface Props { className?: string; visible?: boolean; placement: DrawerPlacement; } export declare type DrawerWrapperProps = Props; declare const DrawerWrapper: React.FC<React.PropsWithChildren<DrawerWrapperProps>>; export default DrawerWrapper;