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

13 lines
233 B
JavaScript
Raw Normal View History

import React from 'react'
2020-02-21 00:57:29 +00:00
import Text from './text'
export default class DotTextSeperator extends React.PureComponent {
2020-02-21 00:57:29 +00:00
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
)
}
}