Label
Standard labeled field for forms and settings.
import { IconMail } from "@tabler/icons-react";import { Input } from "@/components/wensity/input";export function InputLabel() {return (<Inputlabel="Email"placeholder="you@company.com"leftIcon={<IconMail />}/>);}