@tamyla/ui-components-react
Version:
React-based UI component library with Factory Bridge pattern - integrates seamlessly with @tamyla/ui-components. Enhanced AI agent discoverability with structured component registry, comprehensive Storybook (8 components), and detailed guides.
49 lines (48 loc) • 859 B
TypeScript
import 'styled-components';
declare module 'styled-components' {
export interface DefaultTheme {
colors: {
background: string;
foreground: string;
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
muted: string;
};
spacing: {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
typography: {
fontFamily: string;
fontSize: {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
};
borderRadius: {
sm: string;
md: string;
lg: string;
};
shadows: {
sm: string;
md: string;
lg: string;
};
breakpoints: {
sm: string;
md: string;
lg: string;
xl: string;
};
}
}