mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-20 22:21:27 -05:00
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import clsx from "clsx";
|
|
|
|
export interface LabelProps
|
|
extends React.LabelHTMLAttributes<HTMLLabelElement> {
|
|
className?: string;
|
|
}
|
|
|
|
export function Label({ className, ...rest }: LabelProps) {
|
|
return <label className={clsx(className, "label")} {...rest} />;
|
|
}
|