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