import { Box, Text } from '@metafam/ds'; import React from 'react'; type Props = { title: string; value?: string | null | undefined }; export const PlayerFeature: React.FC = ({ title, value, children }) => ( {title} {value || children} );