@useloops/design-system 1.4.314 → 1.4.315
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 +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1322,7 +1322,9 @@ declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
|
|
|
1322
1322
|
|
|
1323
1323
|
interface ImageProps extends LazyLoadImageProps {
|
|
1324
1324
|
containerSx?: SxProps<Theme>;
|
|
1325
|
-
src?:
|
|
1325
|
+
src?: LazyLoadImageProps['src'];
|
|
1326
|
+
style?: LazyLoadImageProps['style'];
|
|
1327
|
+
loading?: LazyLoadImageProps['loading'];
|
|
1326
1328
|
}
|
|
1327
1329
|
declare const Image: FunctionComponent<ImageProps>;
|
|
1328
1330
|
|