@switch-to-eu/layout-ui
Version:
Modular UI design system for privacy-focused tools - React components with Tailwind CSS and theme customization
12 lines • 528 B
TypeScript
/**
* Common types used throughout the UI library
*/
export type Size = "sm" | "md" | "lg" | "xl";
export type Variant = "default" | "secondary" | "destructive" | "outline" | "ghost" | "link";
export type ColorScheme = "light" | "dark" | "system";
export interface BaseComponentProps {
className?: string;
children?: import("react").ReactNode;
}
export type { ThemeConfig, ColorMode, ThemeContextValue, CSSVariableMap, ThemeProperty, ThemeValue, PartialThemeConfig } from "./theme";
//# sourceMappingURL=index.d.ts.map