@deepanmano/berry-icon-library 1.0.45 → 1.0.48
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 +932 -715
- package/dist/index.js.map +5 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,13 @@ export interface ExpandCloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
182
182
|
height?: number | string;
|
|
183
183
|
}
|
|
184
184
|
export declare const ExpandCloseIcon: ({ size, color, width, height, ...rest }: ExpandCloseIconProps) => React.JSX.Element;
|
|
185
|
+
export interface UploadRoundedIcon300Props extends React.SVGProps<SVGSVGElement> {
|
|
186
|
+
size?: number | string;
|
|
187
|
+
color?: string;
|
|
188
|
+
width?: number | string;
|
|
189
|
+
height?: number | string;
|
|
190
|
+
}
|
|
191
|
+
export declare const UploadRoundedIcon300: ({ size, color, width, height, ...rest }: UploadRoundedIcon300Props) => React.JSX.Element;
|
|
185
192
|
export interface MobileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
186
193
|
size?: number | string;
|
|
187
194
|
color?: string;
|
|
@@ -280,6 +287,13 @@ export interface ChevronRightRoundedIconProps extends React.SVGProps<SVGSVGEleme
|
|
|
280
287
|
height?: number | string;
|
|
281
288
|
}
|
|
282
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;
|
|
283
297
|
export interface EditSquareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
284
298
|
size?: number | string;
|
|
285
299
|
color?: string;
|