import { LinkButton } from "~/components/elements/Button"; import { Image } from "~/components/Image"; import { PlusIcon } from "~/components/icons/Plus"; import { navIconUrl } from "~/utils/urls"; import styles from "./AddNewButton.module.css"; interface AddNewButtonProps { to: string; navIcon: string; } export function AddNewButton({ to, navIcon }: AddNewButtonProps) { return ( New ); }