@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
19 lines (18 loc) • 560 B
TypeScript
import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type SpacedGroupProps = {
/**
* Set the group to `display: block;` so it fills its parent.
*/
block?: boolean;
/**
* Reduced spacing between items.
*/
small?: boolean;
/**
* Increased spacing between items.
*/
large?: boolean;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: SpacedGroupProps) => JSX.Element>;
export default _default;