@nature-ui/container
Version:
Container, nature-ui, component, Nature-UI container
14 lines (11 loc) • 353 B
TypeScript
import { PropsOf, nature } from '@nature-ui/system';
type ContainerProps = PropsOf<typeof nature.div> & {
size?: string | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
centerContent?: boolean;
centered?: boolean;
};
declare const Container: {
(props: ContainerProps): JSX.Element;
displayName: string;
};
export { Container, ContainerProps };