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

99 lines
2.1 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 TimerOffProps = IconProps<keyof typeof animations>;
const animations = {
default: {
group: {
initial: {
x: 0,
},
animate: {
x: [0, '-7%', '7%', '-7%', '7%', 0],
transition: { duration: 0.6, ease: 'easeInOut' },
},
},
path1: {},
path2: {},
path3: {},
path4: {},
path5: {},
} satisfies Record<string, Variants>,
} as const;
function IconComponent({ size, ...props }: TimerOffProps) {
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="M10 2h4"
variants={variants.path1}
initial="initial"
animate={controls}
/>
<motion.path
d="M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"
variants={variants.path2}
initial="initial"
animate={controls}
/>
<motion.path
d="M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"
variants={variants.path3}
initial="initial"
animate={controls}
/>
<motion.path
d="m2 2 20 20"
variants={variants.path4}
initial="initial"
animate={controls}
/>
<motion.path
d="M12 12v-2"
variants={variants.path5}
initial="initial"
animate={controls}
/>
</motion.svg>
);
}
function TimerOff(props: TimerOffProps) {
return <IconWrapper icon={IconComponent} {...props} />;
}
export {
animations,
TimerOff,
TimerOff as TimerOffIcon,
type TimerOffProps,
type TimerOffProps as TimerOffIconProps,
};