gab-social/app/javascript/gabsocial/components/dot_text_seperator.js

12 lines
201 B
JavaScript
Raw Normal View History

2020-02-21 00:57:29 +00:00
import Text from './text'
export default class DotTextSeperator extends PureComponent {
render() {
return (
2020-03-11 23:56:18 +00:00
<Text size='small' color='secondary' className={_s.ml5}>·</Text>
2020-02-21 00:57:29 +00:00
)
}
}