use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Barcode(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Barcode" }
path { d: "M3 5v14" }
path { d: "M8 5v14" }
path { d: "M12 5v14" }
path { d: "M17 5v14" }
path { d: "M21 5v14" }
}
}
}