baseui
Version:
A React Component library implementing the Base design language
13 lines (12 loc) • 381 B
TypeScript
import * as React from 'react';
import type { FormControlProps, FormControlState } from './types';
export default class FormControl extends React.Component<FormControlProps, FormControlState> {
static defaultProps: {
overrides: {};
label: any;
caption: any;
disabled: boolean;
counter: boolean;
};
render(): React.JSX.Element;
}