20 lines
468 B
TypeScript
20 lines
468 B
TypeScript
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"])
|
|
return (
|
|
<label
|
|
class={cn(
|
|
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
|
|
local.class
|
|
)}
|
|
{...others}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export { Label }
|