'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 LoaderCircleProps = IconProps; const animations = { default: { group: { initial: { rotate: 0 }, animate: { rotate: 360, transition: { duration: 1, ease: 'linear', repeat: Infinity, repeatType: 'loop', }, }, }, path: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: LoaderCircleProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function LoaderCircle(props: LoaderCircleProps) { return ; } export { animations, LoaderCircle, LoaderCircle as LoaderCircleIcon, type LoaderCircleProps, type LoaderCircleProps as LoaderCircleIconProps, };