goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
33 lines • 986 B
TypeScript
export interface IconStyles {
/** Theme selection: light, dark, or sacred */
theme?: 'light' | 'dark' | 'sacred';
/** Whether the icon is disabled */
disabled?: boolean;
/** Custom icon size */
size?: number;
/** Custom icon color */
color?: string;
/** Custom background color */
backgroundColor?: string;
/** Custom hover background color */
hoverBackgroundColor?: string;
/** Custom border radius */
borderRadius?: string;
/** Custom padding */
padding?: string;
/** Custom margin */
margin?: string;
/** Custom filter effects */
filter?: string;
/** Custom transform effects */
transform?: string;
/** Custom hover transform effects */
hoverTransform?: string;
/** Custom transition duration */
transitionDuration?: string;
/** Custom box shadow */
boxShadow?: string;
/** Custom hover box shadow */
hoverBoxShadow?: string;
}
//# sourceMappingURL=types.d.ts.map