Copy and paste the following code into your project
import type { Component, ComponentProps } from "solid-js";
import { splitProps } from "solid-js";
import { cn } from "~/lib/utils";
const Label: Component<ComponentProps<"label">> = (props) => {
const [local, others] = splitProps(props, ["class"]);
"text-sm leading-none font-heading peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
Update the import paths to match your project setup.