import { HTMLAttributes } from "react"; import { icons } from "./icons"; export type IconName = keyof typeof icons; interface Props extends HTMLAttributes { icon: IconName; className?: string; rotate?: number; } /** * * @param icon string key icon name * @param className string classes for styling * @param rotate optional number rotation of the icon * @returns Icon react component */ export declare const Icon: ({ icon, className, rotate, color, ...rest }: Props) => import("react/jsx-runtime").JSX.Element | null; export {};