mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2026-08-31 05:41:16 +00:00
14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
import React from 'react'
|
|
import FeatureText from './FeatureText'
|
|
|
|
interface BulletTextProps {
|
|
text?: string
|
|
children?: any
|
|
}
|
|
|
|
const BulletText = ({ text, children }: BulletTextProps) => (
|
|
<FeatureText text={`• ${text || children} •`} />
|
|
)
|
|
|
|
export default BulletText
|