this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 20 lines 537 B view raw
1"use client"; 2 3import * as React from "react"; 4 5import { cn } from "~/design-system/utils/cn"; 6 7function Label({ className, ...props }: React.ComponentProps<"label">) { 8 return ( 9 <label 10 data-slot="label" 11 className={cn( 12 "flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50", 13 className, 14 )} 15 {...props} 16 /> 17 ); 18} 19 20export { Label };