You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
284 B

import React from 'react'
import { Box } from 'rebass'
/**
* @render react
* @name Bar
* @example
* <Bar />
*/
class Bar extends React.PureComponent {
render() {
return <Box width={1} bg="white" css={{ height: '1px' }} {...this.props} as="hr" />
}
}
export default Bar