@useloops/design-system 1.4.208 → 1.4.210
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/esm/index.js +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1228,6 +1228,10 @@ interface IconButtonGroupProps extends PropsWithChildren {
|
|
|
1228
1228
|
sizing?: IconButtonProps['sizing'];
|
|
1229
1229
|
iconColor?: string;
|
|
1230
1230
|
groupRaised?: boolean;
|
|
1231
|
+
className?: string;
|
|
1232
|
+
onClick?: (e: any) => void;
|
|
1233
|
+
onMouseDown?: (e: any) => void;
|
|
1234
|
+
sx?: SxProps<Theme>;
|
|
1231
1235
|
}
|
|
1232
1236
|
declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
|
|
1233
1237
|
|