Fortura/apps/www/public/r/arrow-right-icon.json
2025-08-20 04:12:49 -06:00

29 lines
4.1 KiB
JSON

{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "arrow-right-icon",
"type": "registry:ui",
"title": "Arrow Right Icon",
"description": "Arrow right icon component.",
"dependencies": [
"motion"
],
"files": [
{
"path": "registry/icons/arrow-right/index.tsx",
"content": "'use client';\n\nimport * as React from 'react';\nimport { motion, type Variants } from 'motion/react';\n\nimport {\n getVariants,\n useAnimateIconContext,\n IconWrapper,\n type IconProps,\n} from '@/components/animate-ui/icons/icon';\n\ntype ArrowRightProps = IconProps<keyof typeof animations>;\n\nconst animations = {\n default: {\n group: {\n initial: {\n x: 0,\n transition: { ease: 'easeInOut', duration: 0.3 },\n },\n animate: {\n x: '25%',\n transition: { ease: 'easeInOut', duration: 0.3 },\n },\n },\n path1: {},\n path2: {},\n } satisfies Record<string, Variants>,\n 'default-loop': {\n group: {\n initial: {\n x: 0,\n },\n animate: {\n x: [0, '25%', 0],\n transition: { ease: 'easeInOut', duration: 0.6 },\n },\n },\n path1: {},\n path2: {},\n } satisfies Record<string, Variants>,\n pointing: {\n group: {},\n path1: {\n initial: {\n d: 'M5 12h14',\n transition: { ease: 'easeInOut', duration: 0.3 },\n },\n animate: {\n d: 'M5 12h10',\n transition: { ease: 'easeInOut', duration: 0.3 },\n },\n },\n path2: {\n initial: {\n d: 'm12 5 7 7-7 7',\n transition: { ease: 'easeInOut', duration: 0.3 },\n },\n animate: {\n d: 'm8 5 7 7-7 7',\n transition: { ease: 'easeInOut', duration: 0.3 },\n },\n },\n } satisfies Record<string, Variants>,\n 'pointing-loop': {\n group: {},\n path1: {\n initial: {\n d: 'M5 12h14',\n },\n animate: {\n d: ['M5 12h14', 'M5 12h10', 'M5 12h14'],\n transition: { ease: 'easeInOut', duration: 0.6 },\n },\n },\n path2: {\n initial: {\n d: 'm12 5 7 7-7 7',\n },\n animate: {\n d: ['m12 5 7 7-7 7', 'm8 5 7 7-7 7', 'm12 5 7 7-7 7'],\n transition: { ease: 'easeInOut', duration: 0.6 },\n },\n },\n } satisfies Record<string, Variants>,\n out: {\n group: {\n initial: {\n x: 0,\n },\n animate: {\n x: [0, '150%', '-150%', 0],\n transition: {\n default: { ease: 'easeInOut', duration: 0.8 },\n x: {\n ease: 'easeInOut',\n duration: 0.8,\n times: [0, 0.5, 0.5, 1],\n },\n },\n },\n },\n path1: {},\n path2: {},\n } satisfies Record<string, Variants>,\n} as const;\n\nfunction IconComponent({ size, ...props }: ArrowRightProps) {\n const { controls } = useAnimateIconContext();\n const variants = getVariants(animations);\n\n return (\n <motion.svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <motion.g variants={variants.group} initial=\"initial\" animate={controls}>\n <motion.path\n d=\"M5 12h14\"\n variants={variants.path1}\n initial=\"initial\"\n animate={controls}\n />\n <motion.path\n d=\"m12 5 7 7-7 7\"\n variants={variants.path2}\n initial=\"initial\"\n animate={controls}\n />\n </motion.g>\n </motion.svg>\n );\n}\n\nfunction ArrowRight(props: ArrowRightProps) {\n return <IconWrapper icon={IconComponent} {...props} />;\n}\n\nexport {\n animations,\n ArrowRight,\n ArrowRight as ArrowRightIcon,\n type ArrowRightProps,\n type ArrowRightProps as ArrowRightIconProps,\n};\n",
"type": "registry:ui",
"target": "components/animate-ui/icons/arrow-right.tsx"
}
],
"meta": {
"keywords": [
"arrow",
"right",
"forward",
"next",
"direction",
"east",
"->"
]
}
}