import type { FC } from "react" import { Link, useLocation } from "wouter" import PrinterIcon from "~icons/lucide/printer" import { Button, type ButtonProps } from "../button" export type PrintButtonProps = ButtonProps export const PrintButton: FC = ({ variant = "ghost", size = "icon", asChild = true, "aria-label": ariaLabel = "Open print view", title = "Open print view", ...props }) => { const [location] = useLocation() return ( ) }