"use client" import { forwardRef } from "react" import { Button, type ButtonProps } from "./button" export interface IconButtonProps extends ButtonProps {} export const IconButton = forwardRef( function IconButton(props, ref) { return (