update license

This commit is contained in:
taDuc
2026-06-07 23:24:52 +07:00
parent 282df2bc91
commit 74b5b615ac
11 changed files with 545 additions and 16 deletions
+20
View File
@@ -0,0 +1,20 @@
import type { LabelHTMLAttributes, ReactNode } from "react";
import { twMerge } from "tailwind-merge";
type LabelProps = LabelHTMLAttributes<HTMLLabelElement> & {
children: ReactNode;
};
export default function Label({ children, className, ...props }: LabelProps) {
return (
<label
className={twMerge(
"mb-1.5 block text-sm font-medium text-gray-700 dark:text-gray-400",
className
)}
{...props}
>
{children}
</label>
);
}