2018-09-23 18:40:18 -04:00
|
|
|
import React from 'react'
|
|
|
|
|
import FeatureText from './FeatureText'
|
|
|
|
|
|
2020-03-12 02:27:37 -04:00
|
|
|
interface BulletTextProps {
|
|
|
|
|
text?: string
|
|
|
|
|
children?: any
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const BulletText = ({ text, children }: BulletTextProps) => (
|
2018-09-23 18:40:18 -04:00
|
|
|
<FeatureText text={`• ${text || children} •`} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export default BulletText
|