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