@central-icons-react/round-filled-radius-3-stroke-1 0.0.16 → 0.0.17
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/README.md +1 -1
- package/icons/index.d.ts +1399 -5559
- package/icons/index.js +1 -5559
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +2 -0
- package/icons/index.mjs.map +1 -0
- package/index.d.ts +7 -7
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { type CentralIconBaseProps } from "./CentralIconBase";
|
2
|
-
import { type
|
3
|
-
import
|
2
|
+
import { centralIcons, type CentralIconName } from "./icons";
|
3
|
+
import { type FC } from "react";
|
4
4
|
export { type CentralIconBaseProps };
|
5
|
-
export type
|
6
|
-
|
7
|
-
export type CentralIconProps =
|
8
|
-
name:
|
5
|
+
export type CentralIconCategory =
|
6
|
+
(typeof centralIcons)[CentralIconName]["category"];
|
7
|
+
export type CentralIconProps = CentralIconBaseProps & {
|
8
|
+
name: CentralIconName;
|
9
9
|
};
|
10
|
-
export declare const CentralIcon:
|
10
|
+
export declare const CentralIcon: FC<CentralIconProps>;
|
11
11
|
export default CentralIcon;
|