import { NavLink } from "@remix-run/react"; import type { LinkProps } from "@remix-run/react"; import clsx from "clsx"; import type * as React from "react"; import { ArrowUpIcon } from "./icons/ArrowUp"; export function SubNav({ children }: { children: React.ReactNode }) { return (
); } export function SubNavLink({ children, className, ...props }: LinkProps & { children: React.ReactNode; }) { return ( {children} ); }