@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) • 514 B
TypeScript
import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type ContainerProps = {
/**
* Fill parent with no media queries to affect width.
*/
fluid?: boolean;
/**
* Allows applying a background color with `@container-background` variable.
*/
solid?: boolean;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: ContainerProps) => JSX.Element>;
export default _default;