import { Box, BoxProps, HStack, Text } from '@metafam/ds'; type Props = { title: string; // shim b/c I'm getting an error I don't understand // when specifying `align` as an attribute align?: string; }; export const PlayerHeroTile: React.FC = ({ children, title, ...props }) => ( {title} {children} );