{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "native-tabs-carbon", "type": "registry:component", "title": "Native Tabs", "description": "A sleek tabs component with a smooth sliding background indicator using Framer Motion layout animations.", "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-carbon/src/components/native/native-tabs-carbon.tsx", "content": "\"use client\";\n\nimport { cn } from \"@/lib/utils\";\nimport { motion } from \"framer-motion\";\nimport { useState } from \"react\";\n\ninterface NativeTabsProps {\n items: {\n id: string;\n label: string;\n content: React.ReactNode;\n }[];\n defaultValue?: string;\n className?: string;\n}\n\nexport function NativeTabs({\n items,\n defaultValue,\n className,\n}: NativeTabsProps) {\n const [activeTab, setActiveTab] = useState(defaultValue || items[0].id);\n\n return (\n