'use client'; import * as React from 'react'; import { motion, type Variants } from 'motion/react'; import { getVariants, useAnimateIconContext, IconWrapper, type IconProps, } from '@/registry/icons/icon'; type ForkliftProps = IconProps; const animations = { default: { circle1: {}, circle2: {}, path1: {}, path2: {}, line: { initial: { y1: 19, y2: 19, }, animate: { y1: [19, 5, 6], y2: [19, 5, 6], transition: { duration: 0.8, ease: 'easeInOut', }, }, }, } satisfies Record, 'default-loop': { circle1: {}, circle2: {}, path1: {}, path2: {}, line: { initial: { y1: 19, y2: 19, }, animate: { y1: [19, 5, 6, 19], y2: [19, 5, 6, 19], transition: { duration: 1.2, ease: 'easeInOut', }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: ForkliftProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Forklift(props: ForkliftProps) { return ; } export { animations, Forklift, Forklift as ForkliftIcon, type ForkliftProps, type ForkliftProps as ForkliftIconProps, };