import { Slot } from "@radix-ui/react-slot"; import { forwardRef } from "react"; export interface InternalIconProps { svg: React.ReactNode; } export const InternalIcon = forwardRef( ({ svg, ...otherProps }, ref) => { return ( } aria-hidden {...otherProps}> {svg} ); }, );