import React from "react"; import { type IconProps, type IconKey } from "../Icons/types/IconProps.type"; export declare const Icon: React.FC<{ name: IconKey; } & IconProps>; /** * This is a temporary component toui:transition the way we pass icons to components. * Once all components are passed an IconKey instead of a function component we can replace it with the Icon component. * * If any expansion or customization must be made for all icons, do it in the iconWrapper.tsx component. * * @linkcode https://github.com/Luscii/web-ui/blob/main/src/components/Icons/iconWrapper/iconWrapper.tsx */ export declare const IconComponentOrKey: React.FC<{ name: React.FunctionComponent | IconKey; } & Omit>; export default Icon;