@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
15 lines (14 loc) • 519 B
TypeScript
import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type FormGroupProps = {
/**
* Set the style `display: block;` with label above input.
*/
block?: boolean;
/**
* Offset the input, select, etc as if there was a label to the left of it
*/
noLabel?: boolean;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: FormGroupProps) => JSX.Element>;
export default _default;