UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 380 B
import React, { CSSProperties, ReactNode } from 'react'; export type Props = { size: 'label1' | 'label2'; children: ReactNode; className?: string; style?: CSSProperties; htmlFor: string; }; /** * @deprecated will removed soon */ declare const Label: ({ children, className, style, htmlFor, size }: Props) => React.JSX.Element; export { Label };