19 lines
869 B
JavaScript
19 lines
869 B
JavaScript
import { defineComponent, h } from 'vue';
|
|
export default defineComponent({
|
|
name: 'ArrowDown',
|
|
render() {
|
|
return h("svg", {
|
|
viewBox: "0 0 28 28",
|
|
version: "1.1",
|
|
xmlns: "http://www.w3.org/2000/svg"
|
|
}, h("g", {
|
|
stroke: "none",
|
|
"stroke-width": "1",
|
|
"fill-rule": "evenodd"
|
|
}, h("g", {
|
|
"fill-rule": "nonzero"
|
|
}, h("path", {
|
|
d: "M23.7916,15.2664 C24.0788,14.9679 24.0696,14.4931 23.7711,14.206 C23.4726,13.9188 22.9978,13.928 22.7106,14.2265 L14.7511,22.5007 L14.7511,3.74792 C14.7511,3.33371 14.4153,2.99792 14.0011,2.99792 C13.5869,2.99792 13.2511,3.33371 13.2511,3.74793 L13.2511,22.4998 L5.29259,14.2265 C5.00543,13.928 4.53064,13.9188 4.23213,14.206 C3.93361,14.4931 3.9244,14.9679 4.21157,15.2664 L13.2809,24.6944 C13.6743,25.1034 14.3289,25.1034 14.7223,24.6944 L23.7916,15.2664 Z"
|
|
}))));
|
|
}
|
|
}); |