@useloops/design-system 1.4.191 → 1.4.193

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.
package/dist/index.d.ts CHANGED
@@ -752,7 +752,7 @@ type OnboardingItem = {
752
752
  complete: boolean;
753
753
  title: string;
754
754
  description?: string;
755
- url?: string;
755
+ onClick?: () => void;
756
756
  };
757
757
  interface OnboardingCardProps {
758
758
  cardTitle: string;
@@ -1161,6 +1161,7 @@ interface StyledIconButtonProps extends IconButtonProps$1 {
1161
1161
  shape?: IconButtonShapeMap;
1162
1162
  sizing?: IconButtonSizing;
1163
1163
  loading?: boolean;
1164
+ sx?: IconButtonProps$1['sx'];
1164
1165
  }
1165
1166
 
1166
1167
  interface IconButtonProps {
@@ -1181,6 +1182,7 @@ interface IconButtonProps {
1181
1182
  slotProps?: {
1182
1183
  tooltip?: Omit<TooltipProps, 'message'>;
1183
1184
  };
1185
+ sx?: StyledIconButtonProps['sx'];
1184
1186
  }
1185
1187
  declare const IconButton: ({ icon, loading, tooltipMessage, sizing, slotProps, ...rest }: IconButtonProps) => react_jsx_runtime.JSX.Element;
1186
1188