@dialpad/dialtone-icons
Version:
Dialtone icon library
56 lines (55 loc) • 2.16 kB
JavaScript
import { I as t } from "../../constants-DeVuDy8J.js";
import { n as i } from "../../_plugin-vue2_normalizer-DSLOjnn3.js";
const d = {
name: "DtIconHardDrive",
props: {
/**
* The size of the icon.
* @values 100, 200, 300, 400, 500, 600, 700, 800
*/
size: {
type: String,
default: "500",
validator: (r) => Object.keys(t).includes(r)
},
/**
* The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational
*/
ariaLabel: {
type: String,
default: void 0
}
},
/**
* @TODO: Remove this emit once the icons migration is complete,
* they will no longer need this event.
* */
emits: ["loaded"],
computed: {
iconSizeClass() {
return t[this.size];
},
ariaHidden() {
return this.ariaLabel ? "false" : "true";
},
dataQA() {
return this.$attrs["data-qa"] ?? "dt-icon";
}
},
created() {
this.$emit("loaded");
}
};
var l = function() {
var a = this, e = a._self._c;
return e("svg", { staticClass: "d-icon d-icon--hard-drive", class: a.iconSizeClass, attrs: { "aria-label": a.ariaLabel, "data-qa": a.dataQA, "aria-hidden": a.ariaHidden, role: "img", "data-name": "Hard Drive", viewBox: "0 0 12 12", xmlns: "http://www.w3.org/2000/svg" } }, [e("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.5 8a.5.5 0 0 1 .5-.5h.005a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5Zm2 0a.5.5 0 0 1 .5-.5h.005a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Z", fill: "currentColor" } }), e("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.62 1.5h4.76a1.5 1.5 0 0 1 1.342.832l1.725 3.444A.5.5 0 0 1 11.5 6v3a1.5 1.5 0 0 1-1.5 1.5H2A1.5 1.5 0 0 1 .5 9V6a.5.5 0 0 1 .053-.224l1.724-3.443A1.503 1.503 0 0 1 3.62 1.5ZM1.646 9.354A.5.5 0 0 1 1.5 9V6.5h9V9a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.354-.146ZM8.38 2.5a.5.5 0 0 1 .263.075l.185.204L10.19 5.5H1.81l1.362-2.721c.045-.068.146-.203.185-.204A.5.5 0 0 1 3.62 2.5h4.76Z", fill: "currentColor" } })]);
}, n = [], s = /* @__PURE__ */ i(
d,
l,
n
);
const _ = s.exports;
export {
_ as default
};
//# sourceMappingURL=hard-drive.js.map