'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 Disc3Props = IconProps; const animations = { default: { group: { initial: { rotate: 0 }, animate: { rotate: 360, transition: { duration: 1, ease: 'linear', repeat: Infinity, repeatType: 'loop', }, }, }, circle1: {}, circle2: {}, path1: {}, path2: {}, } satisfies Record, } as const; function IconComponent({ size, ...props }: Disc3Props) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function Disc3(props: Disc3Props) { return ; } export { animations, Disc3, Disc3 as Disc3Icon, type Disc3Props, type Disc3Props as Disc3IconProps, };