@useloops/design-system 1.4.408 → 1.4.410

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
@@ -1411,7 +1411,7 @@ interface IconButtonBaseProps extends IconButtonProps$1 {
1411
1411
  shape?: IconButtonShapeMap;
1412
1412
  sizing?: IconButtonSizing;
1413
1413
  }
1414
- declare const IconButtonBase: ({ children, ...rest }: IconButtonBaseProps) => react_jsx_runtime.JSX.Element;
1414
+ declare const IconButtonBase: react.ForwardRefExoticComponent<Omit<IconButtonBaseProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1415
1415
 
1416
1416
  interface TooltipProps extends Omit<Partial<TooltipProps$1>, 'title' | 'slotProps'> {
1417
1417
  message: TooltipProps$1['title'];