27 lines
2.6 KiB
JSON
27 lines
2.6 KiB
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
"name": "search-icon",
|
|
"type": "registry:ui",
|
|
"title": "Search Icon",
|
|
"description": "Search icon component.",
|
|
"dependencies": [
|
|
"motion"
|
|
],
|
|
"files": [
|
|
{
|
|
"path": "registry/icons/search/index.tsx",
|
|
"content": "'use client';\n\nimport * as React from 'react';\nimport { motion, type Variants } from 'motion/react';\n\nimport {\n getVariants,\n useAnimateIconContext,\n IconWrapper,\n type IconProps,\n} from '@/components/animate-ui/icons/icon';\n\ntype SearchProps = IconProps<keyof typeof animations>;\n\nconst animations = {\n default: {\n group: {\n initial: {\n rotate: 0,\n },\n animate: {\n transformOrigin: 'bottom right',\n rotate: [0, 17, -10, 5, -1, 0],\n transition: { duration: 0.8, ease: 'easeInOut' },\n },\n },\n path: {},\n circle: {},\n } satisfies Record<string, Variants>,\n find: {\n group: {\n initial: {\n x: 0,\n y: 0,\n },\n animate: {\n x: [0, '-15%', 0, 0],\n y: [0, 0, '-15%', 0],\n transition: { duration: 1, ease: 'easeInOut' },\n },\n },\n path: {},\n circle: {},\n } satisfies Record<string, Variants>,\n} as const;\n\nfunction IconComponent({ size, ...props }: SearchProps) {\n const { controls } = useAnimateIconContext();\n const variants = getVariants(animations);\n\n return (\n <motion.svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n variants={variants.group}\n initial=\"initial\"\n animate={controls}\n {...props}\n >\n <motion.path\n d=\"m21 21-4.34-4.34\"\n variants={variants.path}\n initial=\"initial\"\n animate={controls}\n />\n <motion.circle\n cx={11}\n cy={11}\n r={8}\n variants={variants.circle}\n initial=\"initial\"\n animate={controls}\n />\n </motion.svg>\n );\n}\n\nfunction Search(props: SearchProps) {\n return <IconWrapper icon={IconComponent} {...props} />;\n}\n\nexport {\n animations,\n Search,\n Search as SearchIcon,\n type SearchProps,\n type SearchProps as SearchIconProps,\n};\n",
|
|
"type": "registry:ui",
|
|
"target": "components/animate-ui/icons/search.tsx"
|
|
}
|
|
],
|
|
"meta": {
|
|
"keywords": [
|
|
"find",
|
|
"scan",
|
|
"magnifier",
|
|
"magnifying glass",
|
|
"lens"
|
|
]
|
|
}
|
|
} |