mfg-ui-components
Version:
React UI library with reusable components
14 lines (13 loc) • 428 B
TypeScript
import React from 'react';
import './Label.scss';
export type labelView = 'mfg-block' | 'mfg-inline';
export interface Props {
LabelClass?: any;
LabelId?: any;
children?: any;
Labelfor?: any;
labelView?: labelView;
style?: React.CSSProperties;
}
declare const Label: ({ LabelClass, LabelId, Labelfor, children, labelView, style }: Props) => import("react/jsx-runtime").JSX.Element;
export default Label;