Icon Button

A button with only an icon. Ideal for toolbars, action menus, and compact interfaces.

Large Size

Medium Size

Small Size

States

interface IconButtonProps {
  color: "primary" | "secondary" | "tertiary" | "iconOnly";
  state: "enabled" | "selected" | "disabled";
  size: "large" | "medium" | "small";
  iconName: keyof typeof Lucide icon;
  onClick?: any;
  loading?: boolean;
  }