{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icons-clapperboard",
  "title": "Clapperboard Icon",
  "description": "Clapperboard icon component.",
  "dependencies": [
    "motion"
  ],
  "registryDependencies": [
    "@animate-ui/icons-icon"
  ],
  "files": [
    {
      "path": "registry/icons/clapperboard/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 ClapperboardProps = IconProps<keyof typeof animations>;\n\nconst animations = {\n  default: {\n    group1: {\n      initial: {\n        rotate: 0,\n        scale: 1,\n      },\n      animate: {\n        rotate: [0, -5, 7, 0],\n        scale: [1, 0.9, 1.1, 1],\n        transition: {\n          duration: 1.2,\n          ease: 'easeInOut',\n        },\n      },\n    },\n    group2: {\n      initial: {\n        rotate: 0,\n      },\n      animate: {\n        rotate: [0, -4, 15, 0],\n        transformOrigin: 'bottom left',\n        transition: {\n          duration: 1.2,\n          ease: 'easeInOut',\n        },\n      },\n    },\n    path1: {},\n    path2: {},\n    path3: {},\n    path4: {},\n  } satisfies Record<string, Variants>,\n} as const;\n\nfunction IconComponent({ size, ...props }: ClapperboardProps) {\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      initial=\"initial\"\n      animate={controls}\n      {...props}\n    >\n      <motion.g variants={variants.group1} initial=\"initial\" animate={controls}>\n        <motion.g\n          variants={variants.group2}\n          initial=\"initial\"\n          animate={controls}\n        >\n          <motion.path\n            d=\"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z\"\n            variants={variants.path1}\n            initial=\"initial\"\n            animate={controls}\n          />\n          <motion.path\n            d=\"m6.2 5.3 3.1 3.9\"\n            variants={variants.path2}\n            initial=\"initial\"\n            animate={controls}\n          />\n          <motion.path\n            d=\"m12.4 3.4 3.1 4\"\n            variants={variants.path3}\n            initial=\"initial\"\n            animate={controls}\n          />\n        </motion.g>\n        <motion.path\n          d=\"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z\"\n          variants={variants.path4}\n          initial=\"initial\"\n          animate={controls}\n        />\n      </motion.g>\n    </motion.svg>\n  );\n}\n\nfunction Clapperboard(props: ClapperboardProps) {\n  return <IconWrapper icon={IconComponent} {...props} />;\n}\n\nexport {\n  animations,\n  Clapperboard,\n  Clapperboard as ClapperboardIcon,\n  type ClapperboardProps,\n  type ClapperboardProps as ClapperboardIconProps,\n};\n",
      "type": "registry:ui",
      "target": "components/animate-ui/icons/clapperboard.tsx"
    }
  ],
  "meta": {
    "keywords": [
      "movie",
      "film",
      "video",
      "camera",
      "cinema",
      "cut",
      "action",
      "television",
      "tv",
      "show",
      "entertainment"
    ]
  },
  "type": "registry:ui"
}