MCPcopy
hub / github.com/unslothai/unsloth / Field

Function Field

studio/frontend/src/components/ui/field.tsx:73–87  ·  view source on GitHub ↗
({
  className,
  orientation = "vertical",
  ...props
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>)

Source from the content-addressed store, hash-verified

71);
72
73function Field({
74 className,
75 orientation = "vertical",
76 ...props
77}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>) {
78 return (
79 <div
80 role="group"
81 data-slot="field"
82 data-orientation={orientation}
83 className={cn(fieldVariants({ orientation }), className)}
84 {...props}
85 />
86 );
87}
88
89function FieldContent({ className, ...props }: React.ComponentProps<"div">) {
90 return (

Callers 15

PromptEntryClass · 0.85
PromptListClass · 0.85
LlamaUpdateJobClass · 0.85
CreateKbRequestClass · 0.85
UpdateKbRequestClass · 0.85
SearchRequestClass · 0.85
ChatMessageClass · 0.85
ChatExportResponseClass · 0.85
ChatSettingsPayloadClass · 0.85

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected