import React from "react"; import { HStack, Text, VStack } from "native-base"; import { TransText } from "./Trans"; const BlueBullet = () => {`\u2022`}; const BulletPointList = ({ bulletPoints }: { bulletPoints: string[] }) => ( {bulletPoints.map((copy, index) => ( ))} ); export { BlueBullet, BulletPointList };