v0.1.9

Warning

This library is under heavy development and the documentation is not complete.

Input

Use the input component to create input fields for your pages.
https://
can be anything
 1<rasm:input type="email" placeholder="Input" /> 
 2<rasm:input type="email" placeholder="Email" label="Email" />
 3<rasm:input type="email" placeholder="Email" label="Email" description="This is a description" /> 
 4<rasm:input type="email" placeholder="Email" label="Email" disabled />
 5<rasm:input type="date" label="Date" />
 6<rasm:input type="password" label="Password" />
 7<rasm:input type="search" icon="search" placeholder="Search .." />
 8<rasm:input type="text" icon:trailing="user" placeholder="Username" description="With trailing icon" /> 
 9<rasm:input type="text" prefix="https://" suffix="com" />
10<rasm:input type="text" prefix="https://"> 
11    <x-slot name="suffix"><b class="text-red-500">can be anything</b></x-slot>
12</rasm:input>