import clsx from "clsx"; import { HTMLAttributes } from "preact"; interface IconProps extends Pick, "className" | "onClick"> { icon?: string; className?: string; } export default function Icon({ icon, className, ...restProps }: IconProps) { return ( ); }