UNPKG

@brizy/ui

Version:
14 lines (13 loc) 427 B
import { ApplyProperties, Color } from "../types"; export type FieldsTheme = { color?: Color; background?: Color; borderColor?: Color; }; type StylesTheme = { "--brz-ui-input-color"?: string; "--brz-ui-input-background"?: string; "--brz-ui-input-border-color"?: string; }; export declare function getFieldsStyleTheme(theme: FieldsTheme | undefined): ApplyProperties<StylesTheme> | undefined; export {};