{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "text",
  "title": "Text",
  "description": "A lightweight wrapper around the React Native Text component to provide default styles.",
  "registryDependencies": [],
  "files": [
    {
      "path": "ui/text.tsx",
      "content": "import { Text as RNText } from \"react-native\";\nimport { cn } from \"../lib/utils\";\n\n// Components\nexport const Text = ({\n  children,\n  className,\n  ...props\n}: React.ComponentProps<typeof RNText>) => {\n  return (\n    <RNText className={cn(\"font-normal text-foreground\", className)} {...props}>\n      {children}\n    </RNText>\n  );\n};\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}
