UNPKG

alinea

Version:
6 lines (5 loc) 250 B
import type { HTMLProps } from 'react'; export type TextLabelProps = { label: string; } & Omit<HTMLProps<HTMLSpanElement>, 'label'>; export declare function TextLabel({ label, ...props }: TextLabelProps): import("react/jsx-runtime").JSX.Element;