Filter

DaisyUI

Filter is a group of radio buttons for filtering content.

Basic Filter
Using Form

Filter wrapped in a form element.

Code Example
use rsxui::components::Filter;
use rsx_macros::rsx;
let html = rsx! {
    <Filter
        tabs={vec![
            "All".to_string(),
            "Active".to_string(),
            "Completed".to_string(),
        ]}
    />
};