@zealicsolutions/web-ui 0.2.9 → 0.2.10
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/cjs/index.js +8 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/Icon/Icon.d.ts +1 -0
- package/dist/cjs/src/icons/Bookmark.d.ts +1 -1
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/Icon/Icon.d.ts +1 -0
- package/dist/esm/src/icons/Bookmark.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
@@ -27,6 +27,7 @@ declare const availableIcons: {
|
|
27
27
|
Mail: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
28
28
|
Menu: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
29
29
|
Search: ({ size, color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
30
|
+
Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
30
31
|
};
|
31
32
|
export declare type IconNames = keyof typeof availableIcons;
|
32
33
|
export declare const Icon: ({ name, color, ...props }: IconProps) => JSX.Element;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import type { IconProps } from 'atoms/Icon/Icon';
|
3
|
-
export declare const Bookmark: ({ fill, color, ...props }: Omit<IconProps, 'name'>) => JSX.Element;
|
3
|
+
export declare const Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, 'name'>) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
@@ -147,6 +147,7 @@ declare const availableIcons: {
|
|
147
147
|
Mail: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
148
148
|
Menu: ({ size, color }: Omit<IconProps, "name">) => JSX.Element;
|
149
149
|
Search: ({ size, color, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
150
|
+
Bookmark: ({ fill, color, size, ...props }: Omit<IconProps, "name">) => JSX.Element;
|
150
151
|
};
|
151
152
|
declare type IconNames = keyof typeof availableIcons;
|
152
153
|
declare const Icon: ({ name, color, ...props }: IconProps) => JSX.Element;
|