save.rs 1.13 KB
use mogwai::prelude::*;
use super::NS;

#[allow(dead_code)]
pub(crate) fn save_icon() -> ViewBuilder<Dom> {
    builder! {
        <svg xmlns=NS viewBox="0 -1 32 32"
             style:width="1.5em" style:height="1.5em"
             style:enable_background="new 0 0 32 32"
             style:fill="none"
             style:stroke="#000"
             style:stroke_width="2"
             style:stroke_linecap="round"
             style:stroke_linejoin="round"
             style:stroke_miterlimit="10">
            <ellipse xmlns=NS
                     cx="14" cy="8" rx="10" ry="5"/>
            <line xmlns=NS
                  x1="24" y1="16" x2="24" y2="8"/>
            <path xmlns=NS
                  d="M4,8 v8 c0,2.8,4.5,5,10,5
                      c1.2,0,2.3-0.1,3.4-0.3"/>
            <path xmlns=NS
                  d="M4,16 v8 c0,2.8,4.5,5,10,5
                      c2,0,3.8-0.3,5.3-0.8"/>
            <circle xmlns=NS
                    cx="24" cy="23" r="7"/>
            <line xmlns=NS
                  x1="24" y1="16" x2="24" y2="26"/>
            <polyline xmlns=NS
                      points="21,23 24,26 27,23"/>
        </svg>
    }
}