UNPKG

472 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps } from "../../styled-system";
2export interface IconProps extends HTMLChakraProps<"svg">, RecipeProps<"icon"> {
3}
4/**
5 * The Icon component renders as an svg element to help define your own custom components.
6 *
7 * @see Docs https://chakra-ui.com/docs/components/icon#using-the-icon-component
8 */
9export declare const Icon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;