File size: 1,077 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
"use client"
import * as React from "react"
import {
type HTMLChakraProps,
type RecipeProps,
chakra,
createRecipeContext,
} from "../../styled-system"
import { cx } from "../../utils"
const { useRecipeResult, PropsProvider } = createRecipeContext({ key: "icon" })
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 const Icon = React.forwardRef<SVGSVGElement, IconProps>(
function Icon(props, ref) {
const {
styles,
className,
props: otherProps,
} = useRecipeResult({ asChild: !props.as, ...props })
return (
<chakra.svg
ref={ref}
focusable={false}
aria-hidden="true"
{...otherProps}
css={[styles, props.css]}
className={cx(className, props.className)}
/>
)
},
)
export const IconPropsProvider = PropsProvider as React.Provider<IconProps>
|