@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
16 lines (15 loc) • 451 B
TypeScript
import * as React from 'react';
import { BaseHtmlProps, BaseProps } from "../../../utils/types";
export interface LabelProps extends BaseProps, BaseHtmlProps<HTMLLabelElement> {
children: React.ReactNode;
disabled?: boolean;
required?: boolean;
optional?: boolean;
withInput?: boolean;
info?: string;
}
export declare const Label: {
(props: LabelProps): React.JSX.Element;
displayName: string;
};
export default Label;