import type React from "react"; import type { ButtonHTMLAttributes } from "react"; export interface IconButtonProps extends ButtonHTMLAttributes { size?: "sm" | "md" | "lg"; variant?: "primary" | "secondary"; icon?: JSX.Element; } export const IconButton = ({ size = "md", variant = "primary", icon, disabled, className, ...rest }: IconButtonProps): JSX.Element => { return ( ); };