initial commit
This commit is contained in:
commit
33e75c056f
77 changed files with 4329 additions and 0 deletions
17
packages/ui/src/components/label.tsx
Normal file
17
packages/ui/src/components/label.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { cn } from "@minmon/ui/lib/utils";
|
||||
import * as React from "react";
|
||||
|
||||
function Label({ className, ...props }: React.ComponentProps<"label">) {
|
||||
return (
|
||||
<label
|
||||
data-slot="label"
|
||||
className={cn(
|
||||
"flex items-center gap-2 text-xs leading-none select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
|
||||
className,
|
||||
)}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export { Label };
|
||||
Loading…
Add table
Add a link
Reference in a new issue