MCPcopy Index your code
hub / github.com/arctic-cli/interface / Fieldset

Function Fieldset

packages/web/components/ui/fieldset.tsx:7–15  ·  view source on GitHub ↗
({ className, ...props }: FieldsetPrimitive.Root.Props)

Source from the content-addressed store, hash-verified

5import { cn } from "@/lib/utils";
6
7function Fieldset({ className, ...props }: FieldsetPrimitive.Root.Props) {
8 return (
9 <FieldsetPrimitive.Root
10 className={cn("flex w-full max-w-64 flex-col gap-6", className)}
11 data-slot="fieldset"
12 {...props}
13 />
14 );
15}
16function FieldsetLegend({
17 className,
18 ...props

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected