UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

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