Input

DaisyUI

Text inputs allow users to enter text into a UI.

Colors
Sizes
Styles
States
Input Types
Code Example
use rsxui::components::{Input, Color, Size};
use rsx_macros::rsx;
let html = rsx! {
    <Input placeholder="Email" color=Color::Primary />
    <Input input_type="password" placeholder="Password" />
    <Input disabled=true placeholder="Disabled" />
};