Skip to content

Label

type Label = {
color?: string | ThemeColor;
fieldName: string;
id?: string;
key?: string;
size?: TextSize;
textAlign?: TextAlign;
type: 'Label';
value: string;
weight?: 'normal' | 'medium' | 'semibold' | 'bold';
};
optional color:
| string
| ThemeColor;

fieldName: string;

optional id: string;

optional key: string;

optional size: TextSize;

optional textAlign: TextAlign;

type: 'Label';

value: string;

optional weight: "normal" | "medium" | "semibold" | "bold";