import { TextField as Kobalte } from "@kobalte/core/text-field" import { Show, splitProps } from "solid-js" import type { ComponentProps } from "solid-js" export interface InputProps extends ComponentProps { label?: string hideLabel?: boolean description?: string } export function Input(props: InputProps) { const [local, others] = splitProps(props, ["class", "label", "hideLabel", "description", "placeholder"]) return ( {local.label} {local.description} ) }