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