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