import { iconVariants } from "./variants" import type { IconProps } from "@/types/components/icon" export default function ArrowRightIcon({ className, color, height = "25", width = "24", ...props }: IconProps) { const classNames = iconVariants({ className, color }) return ( ) }