@central-icons-react/square-outlined-radius-0-stroke-1.5
Version:
A collection of square outlined React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
12 lines (11 loc) • 452 B
TypeScript
import { type CentralIconBaseProps } from "./CentralIconBase";
import { centralIcons, type CentralIconName } from "./icons";
import { type FC } from "react";
export { type CentralIconBaseProps };
export type CentralIconCategory =
(typeof centralIcons)[CentralIconName]["category"];
export type CentralIconProps = CentralIconBaseProps & {
name: CentralIconName;
};
export declare const CentralIcon: FC<CentralIconProps>;
export default CentralIcon;