UNPKG

gi-custom-components-test

Version:
29 lines (28 loc) 642 B
import './MyLabel.css'; export interface Props { /** * Text to display */ label: string; /** * Label size */ size?: 'normal' | 'h1' | 'h2' | 'h3'; /** * Capitalize all letters */ allCaps?: boolean; /** * Label Color */ color?: 'text-primary' | 'text-secondary' | 'text-tertiary'; /** * Font Color */ fontColor?: string; /** * Color personalizado de la fuente */ backgroundColor?: string; } export declare const MyLabel: ({ label, size, allCaps, color, fontColor, backgroundColor, }: Props) => import("react/jsx-runtime").JSX.Element;