'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 PlayProps = IconProps; const animations = { default: { polygon: { initial: { x: 0, transition: { duration: 0.3, ease: 'easeInOut' }, }, animate: { x: 3, transition: { duration: 0.3, ease: 'easeInOut' }, }, }, } satisfies Record, 'default-loop': { polygon: { initial: { x: 0, transition: { duration: 0.6, ease: 'easeInOut' }, }, animate: { x: [0, 3, 0], transition: { duration: 0.6, ease: 'easeInOut' }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: PlayProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Play(props: PlayProps) { return ; } export { animations, Play, Play as PlayIcon, type PlayProps, type PlayProps as PlayIconProps, };