Created Divider layout component

This commit is contained in:
apanizo 2018-08-30 13:14:07 +02:00
parent 24ee0ec1d1
commit 78ef44f840
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// @flow
import * as React from 'react'
import { border } from '~/theme/variables'
const style = {
height: '100%',
border: `solid 1px ${border}`,
}
const Divider = () => (
<div style={style} />
)
export default Divider