@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
12 lines (11 loc) • 551 B
TypeScript
import * as React from "react";
import { type HTMLChakraProps, type RecipeProps } from "../../styled-system";
export interface IconProps extends HTMLChakraProps<"svg">, RecipeProps<"icon"> {
}
/**
* The Icon component renders as an svg element to help define your own custom components.
*
* @see Docs https://chakra-ui.com/docs/components/icon#using-the-icon-component
*/
export declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export declare const IconPropsProvider: React.Provider<IconProps>;