Seed: photography template (19 files)

This commit is contained in:
2026-07-23 22:13:27 +00:00
parent 3ddc350187
commit 5504ba6111
+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;