import type { IconProps } from "./Icon"; import { Icon } from "./Icon"; import { Link } from "./Link"; type QuickLinkProps = { title: string; description: string; href: string; icon: IconProps["icon"]; }; export default function QuickLink(props: QuickLinkProps) { return (
{props.description}