import type { JSXElement } from "solid-js"; import type { IconProps } from "./Icon"; import { Icon } from "./Icon"; import { Link } from "./Link"; type QuickLinksProps = { children: JSXElement; }; export default function QuickLinks(props: QuickLinksProps) { return (
{props.children}
); } type QuickLinkProps = { title: string; description: string; href: string; icon: IconProps["icon"]; }; QuickLinks.QuickLink = (props: QuickLinkProps) => (
);