wix-style-react
Version:
wix-style-react
22 lines • 670 B
TypeScript
export declare const parseColor: ({ unparsedColor, alpha, }: {
unparsedColor: string;
alpha?: number;
}) => string;
export declare const mixColors: (color1: string, color2: string) => any;
export declare const getRailStyle: ({ gradientColor, disabled, direction, }: {
gradientColor: string;
disabled: boolean;
direction: string;
}) => {
'box-shadow': string;
background: string;
} | undefined;
export declare const getThumbStyle: ({ gradientColor, alpha, disabled, }: {
gradientColor: string;
alpha: number;
disabled: boolean;
}) => {
outline: string;
background: string;
} | undefined;
//# sourceMappingURL=utils.d.ts.map