@uiuxicons/react 0.1.0 → 0.1.1
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.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -8,6 +8,8 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, "children"> {
|
|
|
8
8
|
weight?: IconWeight;
|
|
9
9
|
size?: number | string;
|
|
10
10
|
color?: string;
|
|
11
|
+
/** Accessible name rendered as an SVG <title> element */
|
|
12
|
+
title?: string;
|
|
11
13
|
ref?: Ref<SVGSVGElement>;
|
|
12
14
|
children?: never;
|
|
13
15
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, "children"> {
|
|
|
8
8
|
weight?: IconWeight;
|
|
9
9
|
size?: number | string;
|
|
10
10
|
color?: string;
|
|
11
|
+
/** Accessible name rendered as an SVG <title> element */
|
|
12
|
+
title?: string;
|
|
11
13
|
ref?: Ref<SVGSVGElement>;
|
|
12
14
|
children?: never;
|
|
13
15
|
}
|