rharuow-ds
Version:
Modern React Design System with 20 components and auto color system. Define only 2 colors (primary/secondary) and get automatic variations (hover, light, dark) with proper text contrast (WCAG AA). Includes: Table, Card, Button, Chip, Pagination, Input, Te
12 lines (11 loc) • 379 B
TypeScript
import React from "react";
export type AsideSide = "left" | "right";
export interface AsideSheetProps extends React.HTMLAttributes<HTMLDivElement> {
open: boolean;
onClose: () => void;
side?: AsideSide;
size?: "sm" | "md" | "lg" | string;
closeOnOverlayClick?: boolean;
}
export declare const AsideSheet: React.FC<AsideSheetProps>;
export default AsideSheet;