@deepanmano/berry-icon-library 1.0.46 → 1.0.49
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 +793 -393
- package/dist/index.js.map +5 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -287,6 +287,13 @@ export interface ChevronRightRoundedIconProps extends React.SVGProps<SVGSVGEleme
|
|
|
287
287
|
height?: number | string;
|
|
288
288
|
}
|
|
289
289
|
export declare const ChevronRightRoundedIcon: ({ size, color, width, height, ...rest }: ChevronRightRoundedIconProps) => React.JSX.Element;
|
|
290
|
+
export interface ReviewBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
291
|
+
size?: number | string;
|
|
292
|
+
color?: string;
|
|
293
|
+
width?: number | string;
|
|
294
|
+
height?: number | string;
|
|
295
|
+
}
|
|
296
|
+
export declare const ReviewBerryGraphic: ({ size, color, width, height, ...rest }: ReviewBerryGraphicProps) => React.JSX.Element;
|
|
290
297
|
export interface EditSquareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
291
298
|
size?: number | string;
|
|
292
299
|
color?: string;
|
|
@@ -315,6 +322,13 @@ export interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
315
322
|
height?: number | string;
|
|
316
323
|
}
|
|
317
324
|
export declare const ChevronLeftIcon: ({ size, color, width, height, ...rest }: ChevronLeftIconProps) => React.JSX.Element;
|
|
325
|
+
export interface BalloonBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
326
|
+
size?: number | string;
|
|
327
|
+
color?: string;
|
|
328
|
+
width?: number | string;
|
|
329
|
+
height?: number | string;
|
|
330
|
+
}
|
|
331
|
+
export declare const BalloonBerryGraphic: ({ size, color, width, height, ...rest }: BalloonBerryGraphicProps) => React.JSX.Element;
|
|
318
332
|
export interface BerryNerdRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
319
333
|
size?: number | string;
|
|
320
334
|
color?: string;
|