@avalabs/k2-alpine 0.0.0-main-b5b0819 → 0.0.0-main-3c244c9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -44,5 +44,9 @@ export type SquareButtonProps = ButtonBaseProps & {
44
44
  * Content to be shown in the badge
45
45
  */
46
46
  badgeContent?: string;
47
+ /**
48
+ * State to be passed to the button
49
+ */
50
+ state?: Record<string, unknown>;
47
51
  };
48
52
  export declare const SquareButton: import('react').MemoExoticComponent<({ variant, icon, label, disableTilt, rotationRange, scaleOnHover, showBadge, badgeContent, ...squareButtonRestProps }: SquareButtonProps) => import("react/jsx-runtime").JSX.Element>;