MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / RadioGroup

Function RadioGroup

src/components/ui/radio-group.tsx:9–20  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof RadioGroupPrimitive.Root>)

Source from the content-addressed store, hash-verified

7import { cn } from "@/lib/utils"
8
9function RadioGroup({
10 className,
11 ...props
12}: React.ComponentProps<typeof RadioGroupPrimitive.Root>) {
13 return (
14 <RadioGroupPrimitive.Root
15 data-slot="radio-group"
16 className={cn("grid gap-3", className)}
17 {...props}
18 />
19 )
20}
21
22function RadioGroupItem({
23 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected