mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-14 03:54:11 +00:00
Created Divider layout component
This commit is contained in:
parent
24ee0ec1d1
commit
78ef44f840
14
src/components/layout/Divider/index.js
Normal file
14
src/components/layout/Divider/index.js
Normal 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
|
Loading…
x
Reference in New Issue
Block a user