@sil/sass-utils
Version:
Sass Utilities
10 lines (9 loc) • 306 B
TypeScript
import { ColorData } from "./types";
interface CssVariablesArgs {
data: ColorData;
prefix?: string;
colorToProps?: boolean;
}
export declare const colorToCustomProperties: (key: string, value: string) => string;
export declare const cssVariables: (args: CssVariablesArgs) => string;
export {};