@deepanmano/berry-icon-library 1.0.39 → 1.0.41
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 +21 -0
- package/dist/index.js +1320 -264
- package/dist/index.js.map +6 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,13 @@ export interface CreditCardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
21
21
|
height?: number | string;
|
|
22
22
|
}
|
|
23
23
|
export declare const CreditCardIcon: ({ size, color, width, height, ...rest }: CreditCardIconProps) => React.JSX.Element;
|
|
24
|
+
export interface FinanceBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
25
|
+
size?: number | string;
|
|
26
|
+
color?: string;
|
|
27
|
+
width?: number | string;
|
|
28
|
+
height?: number | string;
|
|
29
|
+
}
|
|
30
|
+
export declare const FinanceBerryGraphic: ({ size, color, width, height, ...rest }: FinanceBerryGraphicProps) => React.JSX.Element;
|
|
24
31
|
export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
25
32
|
size?: number | string;
|
|
26
33
|
color?: string;
|
|
@@ -196,6 +203,13 @@ export interface CasePresentationIconProps extends React.SVGProps<SVGSVGElement>
|
|
|
196
203
|
height?: number | string;
|
|
197
204
|
}
|
|
198
205
|
export declare const CasePresentationIcon: ({ size, color, width, height, ...rest }: CasePresentationIconProps) => React.JSX.Element;
|
|
206
|
+
export interface FamilyBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
207
|
+
size?: number | string;
|
|
208
|
+
color?: string;
|
|
209
|
+
width?: number | string;
|
|
210
|
+
height?: number | string;
|
|
211
|
+
}
|
|
212
|
+
export declare const FamilyBerryGraphic: ({ size, color, width, height, ...rest }: FamilyBerryGraphicProps) => React.JSX.Element;
|
|
199
213
|
export interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
200
214
|
size?: number | string;
|
|
201
215
|
color?: string;
|
|
@@ -392,6 +406,13 @@ export interface MinusRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
392
406
|
height?: number | string;
|
|
393
407
|
}
|
|
394
408
|
export declare const MinusRoundedIcon: ({ size, color, width, height, ...rest }: MinusRoundedIconProps) => React.JSX.Element;
|
|
409
|
+
export interface FlyBerryGraphicsProps extends React.SVGProps<SVGSVGElement> {
|
|
410
|
+
size?: number | string;
|
|
411
|
+
color?: string;
|
|
412
|
+
width?: number | string;
|
|
413
|
+
height?: number | string;
|
|
414
|
+
}
|
|
415
|
+
export declare const FlyBerryGraphics: ({ size, color, width, height, ...rest }: FlyBerryGraphicsProps) => React.JSX.Element;
|
|
395
416
|
export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
396
417
|
size?: number | string;
|
|
397
418
|
color?: string;
|