'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 MessageCircleOffProps = IconProps; const animations = { default: { group: { initial: { x: 0, }, animate: { x: [0, '-7%', '7%', '-7%', '7%', 0], transition: { duration: 0.6, ease: 'easeInOut' }, }, }, path1: {}, path2: {}, path3: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: MessageCircleOffProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function MessageCircleOff(props: MessageCircleOffProps) { return ; } export { animations, MessageCircleOff, MessageCircleOff as MessageCircleOffIcon, type MessageCircleOffProps, type MessageCircleOffProps as MessageCircleOffIconProps, };