import React from 'react'; import { Column, Text } from '.'; import { Colors } from './styleUtils'; export const TextItem: React.FC = (props) => { return ( {props.label && ( {props.label} )} {props.text} ); }; interface TextItemProps { text: string; label?: string; divider?: boolean; margin?: string; }