@gechiui/components
Version:
UI components for GeChiUI.
20 lines • 593 B
TypeScript
export default ConnectedControlLabel;
/**
* `ControlLabel` is a form component that works with `FormGroup` to provide a
* label for form elements (e.g. `Switch` or `TextInput`).
*
* ```jsx
* import { ControlLabel, FormGroup, TextInput } from '@gechiui/components/ui';
*
* function Example() {
* return (
* <FormGroup>
* <ControlLabel>First Name</ControlLabel>
* <TextInput />
* </FormGroup>
* );
* }
* ```
*/
declare const ConnectedControlLabel: import("../context").GeChiUIComponent<"label", import("./types").Props, false>;
//# sourceMappingURL=component.d.ts.map