{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"icon-stack","type":"registry:ui","title":"Layered icon illustration container","description":"Layered icon illustration container","dependencies":[],"registryDependencies":[],"files":[{"path":"icon-stack.tsx","type":"registry:ui","content":"// Title: Icon Stack\n// Description: Layered icon illustration container\n\nimport { cn } from \"@/lib/utils\"\n\ntype IconStackProps = React.ComponentProps<\"div\">\n\nfunction IconStack({ className, children, style, ...props }: IconStackProps) {\n return (\n \n \n \n\n \n \n \n \n\n {children ? (\n \n {children}\n \n ) : null}\n \n )\n}\n\nfunction IconStackLayer({\n active = false,\n opacity,\n x = 0,\n y = 0,\n}: {\n active?: boolean\n opacity: string\n x?: number\n y?: number\n}) {\n return (\n \n \n \n \n )\n}\n\nexport { IconStack, type IconStackProps }","target":"components/neui/icon-stack.tsx"}]}