import React from 'react'; import { longText, shortText } from './texts'; interface TextProps { className?: string; style?: Record; useLongText?: boolean; } export const Text = ({ className = '', style = {}, useLongText = false, }: TextProps) => (
{useLongText ? longText : shortText}
);