@goodhood-web/ui 3.0.0-development.13 → 3.0.0-development.15
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/index.js +26 -26
- package/index.mjs +1623 -1614
- package/lib/Atoms/Content/Thumbnail/Thumbnail.type.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -4,7 +4,7 @@ export interface ThumbnailProps extends ImageProps {
|
|
|
4
4
|
isPlaceholder?: boolean;
|
|
5
5
|
}
|
|
6
6
|
export declare const circularSizes: readonly ["28", "32", "40", "48", "56", "64", "80", "120", "280"];
|
|
7
|
-
export declare const squareSizes: readonly ["24", "32", "40", "48", "56", "64", "80", "120"];
|
|
7
|
+
export declare const squareSizes: readonly ["24", "32", "40", "48", "56", "64", "80", "96", "120"];
|
|
8
8
|
export type TCircularSize = (typeof circularSizes)[number];
|
|
9
9
|
export type TSquareSize = (typeof squareSizes)[number];
|
|
10
10
|
export interface ThumbnailCircularProps extends ThumbnailProps {
|