import React from "react"; import { SVGComponent } from "@lib/types/SVGComponent"; export default function EmptyScreen({ Icon, headline, description, }: { Icon: SVGComponent; headline: string; description: string; }) { return ( <>

{headline}

{description}

); }