UNPKG

@praetorian-chariot/ui

Version:

The UI component library for Chariot, built with Tailwind CSS and React.

19 lines 512 B
import React from "react"; export interface DrawerProps { open: boolean; onClose: () => void; children: React.ReactNode; className?: string; style?: React.CSSProperties; variant?: "parent" | "child"; escapeKey?: boolean; uuid?: string; } export declare const Drawer: React.FC<DrawerProps>; interface DrawersProps { children: React.ReactNode; disableBackdrop?: boolean; } export declare const Drawers: React.FC<DrawersProps>; export {}; //# sourceMappingURL=Drawer.d.ts.map