icon_sets 0.3.0

Generated icon data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod icons;

pub use icons::ICON_SETS;

#[derive(Debug, Clone)]
pub struct Icon {
	pub view_box: &'static str,
	pub class: Option<&'static str>,
	pub width: Option<&'static str>,
	pub height: Option<&'static str>,
	pub stroke: Option<&'static str>,
	pub fill: Option<&'static str>,
	pub stroke_width: Option<&'static str>,
	pub stroke_linecap: Option<&'static str>,
	pub stroke_linejoin: Option<&'static str>,
	pub nodes: Vec<&'static str>,
}