fannypack
Version:
An accessible, composable, and friendly React UI Kit
30 lines (25 loc) • 602 B
JavaScript
// @flow
import React, { type Node } from 'react';
import type { Breakpoint } from '../types';
import _Container from './styled';
type Props = {
align?: 'left' | 'right' | 'center',
as?: any,
breakpoint?: Breakpoint,
children: Node,
className?: string,
isFluid?: boolean
};
const Container = ({ align, children, className, ...props }: Props) => (
<_Container className={className} align={align} {...props}>
{children}
</_Container>
);
Container.defaultProps = {
align: 'center',
as: null,
breakpoint: null,
className: null,
isFluid: false
};
export default Container;