{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "ai-loading-skeleton-shadcnui", "type": "registry:component", "title": "AI Loading Skeleton", "description": "Loading state with diagonal shimmer gradient and opacity wave", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/motion-core/ai-loading-skeleton.tsx", "content": "\"use client\";\n\nimport { motion } from \"framer-motion\";\n\ntype SkeletonItemProps = {\n width?: string;\n height?: string;\n className?: string;\n};\n\nfunction SkeletonItem({\n width = \"100%\",\n height = \"1rem\",\n className = \"\",\n}: SkeletonItemProps) {\n return (\n