#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct IconData {
pub style: Option<&'static str>,
pub x: Option<&'static str>,
pub y: Option<&'static str>,
pub width: Option<&'static str>,
pub height: Option<&'static str>,
pub view_box: Option<&'static str>,
pub stroke_linecap: Option<&'static str>,
pub stroke_linejoin: Option<&'static str>,
pub stroke_width: Option<&'static str>,
pub stroke: Option<&'static str>,
pub fill: Option<&'static str>,
pub data: &'static str,
}