UNPKG

mfg-ui-components

Version:

React UI library with reusable components

12 lines (11 loc) 361 B
import './Label.scss'; export type labelView = 'mfg-block' | 'mfg-inline'; export interface Props { LabelClass?: any; LabelId?: any; children?: any; Labelfor?: any; labelView?: labelView; } declare const Label: ({ LabelClass, LabelId, Labelfor, children, labelView }: Props) => import("react/jsx-runtime").JSX.Element; export default Label;