UNPKG

@spicy-ui/core

Version:

A themable and extensible React UI library, ready to use out of the box

8 lines (7 loc) 330 B
import * as React from 'react'; import { BoxProps } from '../Box'; export interface ContainerProps extends BoxProps { /** If `true`, container will center its children. */ isCentered?: boolean; } export declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;