65 lines
1.4 KiB
JavaScript
65 lines
1.4 KiB
JavaScript
// @flow
|
|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
type JustifyValues =
|
|
| 'center'
|
|
| 'space-around'
|
|
| 'space-between'
|
|
| 'flex-start'
|
|
| 'flex-end';
|
|
|
|
type AlignValues =
|
|
| 'stretch'
|
|
| 'center'
|
|
| 'baseline'
|
|
| 'flex-start'
|
|
| 'flex-end';
|
|
|
|
type Props = {
|
|
column?: ?boolean,
|
|
align?: AlignValues,
|
|
justify?: JustifyValues,
|
|
auto?: ?boolean,
|
|
className?: string,
|
|
children?: React.Element<any>,
|
|
};
|
|
|
|
const Flex = (props: Props) => {
|
|
const { children, ...restProps } = props;
|
|
return <Container {...restProps}>{children}</Container>;
|
|
};
|
|
|
|
const Container = styled.div`
|
|
display: flex;
|
|
flex: ${({ auto }) => (auto ? '1 1 auto' : 'initial')};
|
|
flex-direction: ${({ column }) => (column ? 'column' : 'row')};
|
|
align-items: ${({ align }) => align};
|
|
justify-content: ${({ justify }) => justify};
|
|
`;
|
|
|
|
export default Flex;
|
|
|
|
// flex: React.PropTypes.bool,
|
|
// wrap: React.PropTypes.bool,
|
|
// flexColumn: React.PropTypes.bool,
|
|
// column: React.PropTypes.bool,
|
|
// align: React.PropTypes.oneOf([
|
|
// 'stretch',
|
|
// 'center',
|
|
// 'baseline',
|
|
// 'flex-start',
|
|
// 'flex-end'
|
|
// ]),
|
|
// justify: React.PropTypes.oneOf([
|
|
// 'center',
|
|
// 'space-around',
|
|
// 'space-between',
|
|
// 'flex-start',
|
|
// 'flex-end'
|
|
// ]),
|
|
// flexAuto: React.PropTypes.bool,
|
|
// auto: React.PropTypes.bool,
|
|
// flexNone: React.PropTypes.bool,
|
|
// order: React.PropTypes.number,
|