12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
|
import Text from './text'
|
||
|
|
||
|
export default class DotTextSeperator extends PureComponent {
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<Text size='small' color='secondary' className={_s.marginLeft5PX}>•</Text>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
}
|