import * as React from 'react' import { panda, Stack } from '../../styled-system/jsx' interface EmptyStateProps { title: string children: React.ReactNode icon: React.ReactElement } export function EmptyState(props: EmptyStateProps) { const { title, children, icon } = props return ( {icon} {title}
{children}
) }