import type { LinkProps } from "@remix-run/react";
import { NavLink } from "@remix-run/react";
import clsx from "clsx";
import type * as React from "react";
export function SubNav({
children,
secondary,
}: {
children: React.ReactNode;
secondary?: boolean;
}) {
return (