UNPKG

cob3x85-components-storybook

Version:
22 lines (21 loc) 534 B
import "./MyLabel.css"; export interface MyLabelProps { /** * Text to display */ label: string; /** * Text size */ size?: 'normal' | 'h1' | 'h2' | 'h3'; /** * All caps bool option */ allCaps?: boolean; /** * Font color */ color?: "text-primary" | "text-secondary" | "text-tertiary" | "blue" | "yellow"; fontColor?: string; } export declare const MyLabel: ({ label, size, allCaps, color, fontColor }: MyLabelProps) => import("react/jsx-runtime").JSX.Element;