reablocks
Version:
Component library for React
22 lines (21 loc) • 454 B
TypeScript
export interface DrawerTheme {
base: string;
header: {
base: string;
text: string;
};
content: string;
disablePadding: string;
closeButton: {
base: string;
headerless: string;
};
positions: {
top: string;
end: string;
bottom: string;
start: string;
};
}
export declare const drawerTheme: DrawerTheme;
export declare const legacyDrawerTheme: DrawerTheme;