UNPKG

@hakuna-matata-ui/styled-system

Version:

Style function for css-in-js building component libraries

23 lines 656 B
import * as CSS from "csstype"; import { Config } from "../utils/prop-config"; import { Token } from "../utils"; export declare const color: Config; export interface ColorProps { /** * The CSS `color` property */ textColor?: Token<CSS.Property.Color, "colors">; /** * The CSS `color` property */ color?: Token<CSS.Property.Color, "colors">; /** * The CSS `fill` property for icon svgs and paths */ fill?: Token<CSS.Property.Color, "colors">; /** * The CSS `stroke` property for icon svgs and paths */ stroke?: Token<CSS.Property.Color, "colors">; } //# sourceMappingURL=color.d.ts.map