@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
10 lines (9 loc) • 417 B
TypeScript
import { FormLabelProps as MuiFormLabelProps } from "@material-ui/core/FormLabel";
export declare type FormLabelProps = MuiFormLabelProps & {
customStyle?: string;
helper?: string;
label: string;
required?: boolean;
};
declare const _default: import("styled-components").StyledComponent<({ children, helper, label, ...rest }: any) => JSX.Element, any, FormLabelProps, never>;
export default _default;