import type React from 'react' interface EmptyStateProps { glyph: string copy: string } export function EmptyState({ glyph, copy }: EmptyStateProps): React.JSX.Element { return (
{glyph}
{copy}
) }