2020-08-17 15:07:16 -05:00
|
|
|
import React from 'react'
|
2020-08-17 15:59:29 -05:00
|
|
|
import PropTypes from 'prop-types'
|
2020-02-20 19:57:29 -05:00
|
|
|
import Text from './text'
|
|
|
|
|
2020-08-17 15:07:16 -05:00
|
|
|
export default class DotTextSeperator extends React.PureComponent {
|
2020-02-20 19:57:29 -05:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-03-11 19:56:18 -04:00
|
|
|
<Text size='small' color='secondary' className={_s.ml5}>·</Text>
|
2020-02-20 19:57:29 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|