This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
radio-group
agileflow-projectquestorg/radio-groupRemovedComponent
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/radio-group.jsonSource
1"use client"23import * as React from "react"4import { RadioGroup as RadioGroupPrimitive } from "radix-ui"56import { cn } from "@/registry/bases/radix/lib/utils"7import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"89function RadioGroup({10 className,11 ...props12}: React.ComponentProps<typeof RadioGroupPrimitive.Root>) {13 return (14 <RadioGroupPrimitive.Root15 data-slot="radio-group"16 className={cn("grid gap-2 w-full", className)}17 {...props}18 />19 )20}2122function RadioGroupItem({23 className,24 ...props25}: React.ComponentProps<typeof RadioGroupPrimitive.Item>) {26 return (27 <RadioGroupPrimitive.Item28 data-slot="radio-group-item"29 className={cn(30 "border-input text-primary dark:bg-input/30 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 flex size-4 rounded-full focus-visible:ring-[3px] aria-invalid:ring-[3px] group/radio-group-item peer relative aspect-square shrink-0 border outline-none after:absolute after:-inset-x-3 after:-inset-y-2 disabled:cursor-not-allowed disabled:opacity-50",31 className32 )}33 {...props}34 >35 <RadioGroupPrimitive.Indicator36 data-slot="radio-group-indicator"37 className="group-aria-invalid/radio-group-item:text-destructive text-primary flex size-4 items-center justify-center"38 >39 <IconPlaceholder40 lucide="CircleIcon"41 tabler="IconCircle"42 hugeicons="CircleIcon"43 phosphor="CircleIcon"44 className="absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2 fill-current"45 />46 </RadioGroupPrimitive.Indicator>47 </RadioGroupPrimitive.Item>48 )49}5051export { RadioGroup, RadioGroupItem }
