@recastui/themes
Version:
Recastui Design System component themes with Tailwindcss and CVA
18 lines (15 loc) • 982 B
TypeScript
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
import { VariantProps } from 'class-variance-authority';
declare const drawer: {
content: (props?: ({
size?: "sm" | "md" | "lg" | "xl" | "full" | "xs" | null | undefined;
position?: "top" | "right" | "bottom" | "left" | null | undefined;
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
overlay: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
heading: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
body: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
footer: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
closeButton: (props?: class_variance_authority_dist_types.ClassProp | undefined) => string;
};
type DrawerTheme = VariantProps<typeof drawer.content>;
export { DrawerTheme, drawer };