@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
16 lines (15 loc) • 568 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
declare type VariantTypes = 'info' | 'success' | 'error' | 'warning' | 'custom';
declare type BorderTypes = 'contained' | 'outlined';
declare type StyleProps = {
color: VariantTypes;
borderType: BorderTypes;
customBackgroundColor?: string;
customTextColor?: string;
customIconColor?: string;
customBorderColor?: string;
};
declare const styles: (data?: (StyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"content" | "wrapper">;
export default styles;