arrow-left-right.tsx95 lines · main
| 1 | 'use client'; |
| 2 | |
| 3 | import { motion, useAnimation } from 'motion/react'; |
| 4 | import type { HTMLAttributes } from 'react'; |
| 5 | import { forwardRef, useCallback, useImperativeHandle, useRef } from 'react'; |
| 6 | |
| 7 | import { cn } from '@/lib/utils'; |
| 8 | |
| 9 | export interface ArrowLeftRightIconHandle { |
| 10 | startAnimation: () => void; |
| 11 | stopAnimation: () => void; |
| 12 | } |
| 13 | |
| 14 | interface ArrowLeftRightIconProps extends HTMLAttributes<HTMLDivElement> { |
| 15 | size?: number; |
| 16 | } |
| 17 | |
| 18 | const ArrowLeftRightIcon = forwardRef<ArrowLeftRightIconHandle, ArrowLeftRightIconProps>( |
| 19 | ({ onMouseEnter, onMouseLeave, className, size = 18, ...props }, ref) => { |
| 20 | const controls = useAnimation(); |
| 21 | const isControlledRef = useRef(false); |
| 22 | |
| 23 | useImperativeHandle(ref, () => { |
| 24 | isControlledRef.current = true; |
| 25 | return { |
| 26 | startAnimation: () => controls.start('animate'), |
| 27 | stopAnimation: () => controls.start('normal'), |
| 28 | }; |
| 29 | }); |
| 30 | |
| 31 | const handleMouseEnter = useCallback( |
| 32 | (e: React.MouseEvent<HTMLDivElement>) => { |
| 33 | if (isControlledRef.current) onMouseEnter?.(e); |
| 34 | else controls.start('animate'); |
| 35 | }, |
| 36 | [controls, onMouseEnter], |
| 37 | ); |
| 38 | |
| 39 | const handleMouseLeave = useCallback( |
| 40 | (e: React.MouseEvent<HTMLDivElement>) => { |
| 41 | if (isControlledRef.current) onMouseLeave?.(e); |
| 42 | else controls.start('normal'); |
| 43 | }, |
| 44 | [controls, onMouseLeave], |
| 45 | ); |
| 46 | |
| 47 | return ( |
| 48 | <div |
| 49 | className={cn(className)} |
| 50 | onMouseEnter={handleMouseEnter} |
| 51 | onMouseLeave={handleMouseLeave} |
| 52 | {...props} |
| 53 | > |
| 54 | <svg |
| 55 | fill="none" |
| 56 | height={size} |
| 57 | stroke="currentColor" |
| 58 | strokeLinecap="round" |
| 59 | strokeLinejoin="round" |
| 60 | strokeWidth="2" |
| 61 | viewBox="0 0 24 24" |
| 62 | width={size} |
| 63 | xmlns="http://www.w3.org/2000/svg" |
| 64 | > |
| 65 | <motion.g |
| 66 | animate={controls} |
| 67 | transition={{ duration: 0.5, ease: 'easeInOut' }} |
| 68 | variants={{ |
| 69 | normal: { x: 0 }, |
| 70 | animate: { x: [0, -2, 0] }, |
| 71 | }} |
| 72 | > |
| 73 | <path d="M8 3 4 7l4 4" /> |
| 74 | <path d="M4 7h16" /> |
| 75 | </motion.g> |
| 76 | <motion.g |
| 77 | animate={controls} |
| 78 | transition={{ duration: 0.5, ease: 'easeInOut' }} |
| 79 | variants={{ |
| 80 | normal: { x: 0 }, |
| 81 | animate: { x: [0, 2, 0] }, |
| 82 | }} |
| 83 | > |
| 84 | <path d="m16 21 4-4-4-4" /> |
| 85 | <path d="M20 17H4" /> |
| 86 | </motion.g> |
| 87 | </svg> |
| 88 | </div> |
| 89 | ); |
| 90 | }, |
| 91 | ); |
| 92 | |
| 93 | ArrowLeftRightIcon.displayName = 'ArrowLeftRightIcon'; |
| 94 | |
| 95 | export { ArrowLeftRightIcon }; |