UNPKG

@keen.io/ui-core

Version:

Keen visual components library

13 lines (12 loc) 331 B
import React, { FC } from 'react'; import { LabelVariant } from './types'; declare type Props = { children: React.ReactNode; hasError?: boolean; disabled?: boolean; showAsterisk?: boolean; htmlFor?: string; variant?: LabelVariant; }; export declare const Label: FC<Props>; export default Label;