@fileverse/ui 4.1.6-patch-2 → 4.1.6-patch-4

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.
@@ -514,52 +514,14 @@ export declare interface IconButtonProps extends React.ButtonHTMLAttributes<HTML
514
514
  fill?: string;
515
515
  }
516
516
 
517
+ declare type IconComponent = default_2.FC<IconProps>;
518
+
517
519
  export declare interface IconProps extends SvgProps, VariantProps<typeof iconVariants> {
518
520
  name: keyof typeof Icons;
519
521
  className?: string;
520
522
  }
521
523
 
522
- declare const Icons: {
523
- Camera: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
524
- Check: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
525
- CheckboxEmpty: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
526
- Comment: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
527
- ExternalLink: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
528
- FilePlus: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
529
- FileText: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
530
- Download: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
531
- Grid: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
532
- Heart: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
533
- HeartBeat: ({ width, height, ...props }: IconProps) => JSX_2.Element;
534
- ImagePlus: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
535
- InfoCircle: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
536
- Dashboard: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
537
- Link: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
538
- List: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
539
- Notification: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
540
- PanelLeft: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
541
- Paperclip: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
542
- PenLine: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
543
- Pencil: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
544
- Placeholder: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
545
- Play: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
546
- Plus: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
547
- Question: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
548
- Search: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
549
- Section: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
550
- Settings: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
551
- Share2: default_2.ForwardRefExoticComponent<Omit<IconProps, "ref"> & default_2.RefAttributes<SVGSVGElement>>;
552
- Share: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
553
- Facebook: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
554
- Instagram: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
555
- Linkedin: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
556
- X: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
557
- Trash: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
558
- Type: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
559
- Upload: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
560
- Users: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
561
- Close: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
562
- };
524
+ declare const Icons: Record<string, IconComponent>;
563
525
 
564
526
  declare const iconVariants: (props?: ({
565
527
  size?: "sm" | "md" | "lg" | null | undefined;