MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / AlertDialogTitle

Function AlertDialogTitle

components/ui/alert-dialog.tsx:112–126  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Title>)

Source from the content-addressed store, hash-verified

110}
111
112function AlertDialogTitle({
113 className,
114 ...props
115}: React.ComponentProps<typeof AlertDialogPrimitive.Title>) {
116 return (
117 <AlertDialogPrimitive.Title
118 data-slot="alert-dialog-title"
119 className={cn(
120 "text-sm font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2",
121 className
122 )}
123 {...props}
124 />
125 );
126}
127
128function AlertDialogDescription({
129 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected