Seed: wedding template (15 files)

This commit is contained in:
2026-07-23 22:13:08 +00:00
parent 5396a374e3
commit 3a6e0b8e9f
+8
View File
@@ -0,0 +1,8 @@
import * as React from "react";
import { cn } from "@/lib/utils";
export const Label = ({ className, ...props }: React.LabelHTMLAttributes<HTMLLabelElement>) => (
<label className={cn("text-sm font-medium leading-none", className)} {...props} />
);
export default Label;