bertui-icons 1.0.2 → 1.0.3

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.
@@ -2,27 +2,16 @@
2
2
  import * as React from 'react';
3
3
 
4
4
  export interface IconProps extends React.SVGProps<SVGSVGElement> {
5
- /** Icon size in pixels */
6
5
  size?: number;
7
- /** Icon color (CSS color value) */
8
6
  color?: string;
9
- /** Stroke width */
10
7
  strokeWidth?: number;
11
- /** CSS class name */
12
8
  className?: string;
13
- /** Inline styles */
14
9
  style?: React.CSSProperties;
15
- /** Text/number to overlay on the icon */
16
10
  children?: string | number;
17
- /** X position for text overlay */
18
11
  x?: number;
19
- /** Y position for text overlay */
20
12
  y?: number;
21
- /** Font size for text overlay */
22
13
  fontSize?: number;
23
- /** Font weight for text overlay */
24
14
  fontWeight?: number;
25
- /** Color for text overlay */
26
15
  textColor?: string;
27
16
  }
28
17
 
@@ -30,7 +19,6 @@ export type IconComponent = React.ForwardRefExoticComponent<
30
19
  IconProps & React.RefAttributes<SVGSVGElement>
31
20
  >;
32
21
 
33
- // Search and utility functions
34
22
  export interface IconMetadata {
35
23
  name: string;
36
24
  tags: string[];
@@ -1712,7 +1700,6 @@ export const MapPinCheckInside: IconComponent;
1712
1700
  export const CloudSync: IconComponent;
1713
1701
  export const PanelTopClose: IconComponent;
1714
1702
 
1715
- // Icons object for dynamic access
1716
1703
  export const Icons: {
1717
1704
  TableCellsMerge: IconComponent;
1718
1705
  Regex: IconComponent;
@@ -3383,5 +3370,4 @@ export const Icons: {
3383
3370
  PanelTopClose: IconComponent;
3384
3371
  };
3385
3372
 
3386
- // Default export
3387
3373
  export default Icons;