style-dictionary-utils
Version:
Utilities to use in your style dictionary config
10 lines (9 loc) • 434 B
TypeScript
import { Transform } from 'style-dictionary/types';
declare const StrokeStyleValues: readonly ["solid", "dashed", "dotted", "double", "groove", "ridge", "outset", "inset"];
export type TokenValueStrokeStyle = (typeof StrokeStyleValues)[number];
/**
* fontFamilyCss
* @description if fontFamily is an array, join it with commas and wrap font names with spaces in quotes
*/
export declare const strokeStyleCss: Transform;
export {};