'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 BellProps = IconProps; const animations = { default: { group: { initial: { rotate: 0, }, animate: { rotate: [0, 20, -10, 10, -5, 3, 0], transformOrigin: 'top center', transition: { duration: 0.9, ease: 'easeInOut' }, }, }, path1: { initial: { x: 0, }, animate: { x: [0, -6, 5, -5, 4, -3, 2, 0], transition: { duration: 1.1, ease: 'easeInOut' }, }, }, path2: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: BellProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Bell(props: BellProps) { return ; } export { animations, Bell, Bell as BellIcon, type BellProps, type BellProps as BellIconProps, };