@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
20 lines (19 loc) • 1 kB
JavaScript
;
var vue = require("vue");
var IconCheck = vue.defineComponent({
name: "IconCheck",
render() {
return vue.createVNode("svg", {
"aria-hidden": "true",
"focusable": "false",
"viewBox": "0 0 1024 1024",
"width": "200",
"height": "200",
"fill": "currentColor"
}, [vue.createVNode("path", {
"d": "M877.44815445 206.10060629a64.72691371 64.72691371 0 0 0-95.14856334 4.01306852L380.73381888 685.46812814 235.22771741 533.48933518a64.72691371 64.72691371 0 0 0-92.43003222-1.03563036l-45.82665557 45.82665443a64.72691371 64.72691371 0 0 0-0.90617629 90.61767965l239.61903446 250.10479331a64.72691371 64.72691371 0 0 0 71.19960405 15.14609778 64.33855261 64.33855261 0 0 0 35.08198741-21.23042702l36.24707186-42.71976334 40.5190474-40.77795556-3.36579926-3.49525333 411.40426297-486.74638962a64.72691371 64.72691371 0 0 0-3.88361443-87.64024149l-45.3088404-45.43829334z",
"p-id": "840"
}, null)]);
}
});
module.exports = IconCheck;