@brizy/ui
Version:
React elements in Brizy style
14 lines (13 loc) • 427 B
TypeScript
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 {};