@deepanmano/berry-icon-library 1.0.40 → 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 +14 -0
- package/dist/index.js +1183 -320
- package/dist/index.js.map +5 -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;
|