import { cn } from '../utils' import { Text } from './text' export const Empty = ({ body = 'No items', className }: { body?: string; className?: string }) => { return ( {body} ) }