import * as React from "react"; export interface EmptyStateProps { icon: React.ComponentType<{ className?: string }>; text: React.ReactNode; } export const EmptyState: React.VoidFunctionComponent = ({ icon: Icon, text, }) => { return (
{text}
); };