@keen.io/ui-core
Version:
Keen visual components library
51 lines (50 loc) • 1.19 kB
TypeScript
declare const createVariants: (isActive: boolean) => {
prop: string;
variants: {
black: {
color: string;
backgroundColor: string;
};
red: {
color: string;
backgroundColor: string;
};
white: {
color: string;
backgroundColor: string;
};
purple: {
color: string;
backgroundColor: string;
};
orange: {
color: string;
backgroundColor: string;
};
yellow: {
color: string;
backgroundColor: string;
};
green: {
color: string;
backgroundColor: string;
};
gray: {
color: string;
backgroundColor: string;
};
pink: {
color: string;
backgroundColor: string;
};
lightBlue: {
color: string;
backgroundColor: string;
};
blue: {
color: string;
backgroundColor: string;
};
};
};
export default createVariants;