2025-08-20 04:12:49 -06:00

93 lines
2.0 KiB
TypeScript

'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 RotateCcwProps = IconProps<keyof typeof animations>;
const animations = {
default: {
group: {
initial: {
rotate: 0,
transition: { type: 'spring', stiffness: 150, damping: 25 },
},
animate: {
rotate: -45,
transition: { type: 'spring', stiffness: 150, damping: 25 },
},
},
path1: {},
path2: {},
} satisfies Record<string, Variants>,
rotate: {
group: {
initial: {
rotate: 0,
transition: { type: 'spring', stiffness: 150, damping: 25 },
},
animate: {
rotate: -360,
transition: { type: 'spring', stiffness: 150, damping: 25 },
},
},
path1: {},
path2: {},
} satisfies Record<string, Variants>,
} as const;
function IconComponent({ size, ...props }: RotateCcwProps) {
const { controls } = useAnimateIconContext();
const variants = getVariants(animations);
return (
<motion.svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
variants={variants.group}
initial="initial"
animate={controls}
{...props}
>
<motion.path
d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"
variants={variants.path1}
initial="initial"
animate={controls}
/>
<motion.path
d="M3 3v5h5"
variants={variants.path2}
initial="initial"
animate={controls}
/>
</motion.svg>
);
}
function RotateCcw(props: RotateCcwProps) {
return <IconWrapper icon={IconComponent} {...props} />;
}
export {
animations,
RotateCcw,
RotateCcw as RotateCcwIcon,
type RotateCcwProps,
type RotateCcwProps as RotateCcwIconProps,
};