12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
|
import { classNames } from "@calcom/lib";
|
||
|
|
||
|
export function Label(props: JSX.IntrinsicElements["label"]) {
|
||
|
return (
|
||
|
<label
|
||
|
{...props}
|
||
|
className={classNames("mb-2 block text-sm font-medium leading-none text-gray-700", props.className)}>
|
||
|
{props.children}
|
||
|
</label>
|
||
|
);
|
||
|
}
|