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

96 lines
1.9 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 SearchProps = IconProps<keyof typeof animations>;
const animations = {
default: {
group: {
initial: {
rotate: 0,
},
animate: {
transformOrigin: 'bottom right',
rotate: [0, 17, -10, 5, -1, 0],
transition: { duration: 0.8, ease: 'easeInOut' },
},
},
path: {},
circle: {},
} satisfies Record<string, Variants>,
find: {
group: {
initial: {
x: 0,
y: 0,
},
animate: {
x: [0, '-15%', 0, 0],
y: [0, 0, '-15%', 0],
transition: { duration: 1, ease: 'easeInOut' },
},
},
path: {},
circle: {},
} satisfies Record<string, Variants>,
} as const;
function IconComponent({ size, ...props }: SearchProps) {
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="m21 21-4.34-4.34"
variants={variants.path}
initial="initial"
animate={controls}
/>
<motion.circle
cx={11}
cy={11}
r={8}
variants={variants.circle}
initial="initial"
animate={controls}
/>
</motion.svg>
);
}
function Search(props: SearchProps) {
return <IconWrapper icon={IconComponent} {...props} />;
}
export {
animations,
Search,
Search as SearchIcon,
type SearchProps,
type SearchProps as SearchIconProps,
};