UNPKG

@dabapps/roe

Version:

A Collection of React Components for Project Development

21 lines (20 loc) 630 B
/// <reference types="react" /> import { HTMLProps, PureComponent } from 'react'; import { ComponentProps } from '../../types'; export interface ContainerProps extends ComponentProps, HTMLProps<HTMLElement> { /** * Fill parent with no media queries to affect width. */ fluid?: boolean; /** * Allows applying a background color with `@container-background` variable. */ solid?: boolean; } /** * Used inside `NavBar`s or as the main wrapper for an application. */ export declare class Container extends PureComponent<ContainerProps, {}> { render(): JSX.Element; } export default Container;