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.
26 lines
423 B
26 lines
423 B
import React from 'react'
|
|
import { Card } from 'rebass'
|
|
|
|
/**
|
|
* @render react
|
|
* @name Bar
|
|
* @example
|
|
* <Bar />
|
|
*/
|
|
class Bar extends React.PureComponent {
|
|
render() {
|
|
return (
|
|
<Card
|
|
width={1}
|
|
{...this.props}
|
|
borderColor="primaryText"
|
|
opacity={0.6}
|
|
border={1}
|
|
css={{ 'border-bottom': 'none !important' }}
|
|
as="hr"
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Bar
|
|
|