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