14 lines
613 B
JavaScript
14 lines
613 B
JavaScript
import { defineComponent, h } from 'vue';
|
|
export default defineComponent({
|
|
name: 'ChevronLeft',
|
|
render() {
|
|
return h("svg", {
|
|
viewBox: "0 0 16 16",
|
|
fill: "none",
|
|
xmlns: "http://www.w3.org/2000/svg"
|
|
}, h("path", {
|
|
d: "M10.3536 3.14645C10.5488 3.34171 10.5488 3.65829 10.3536 3.85355L6.20711 8L10.3536 12.1464C10.5488 12.3417 10.5488 12.6583 10.3536 12.8536C10.1583 13.0488 9.84171 13.0488 9.64645 12.8536L5.14645 8.35355C4.95118 8.15829 4.95118 7.84171 5.14645 7.64645L9.64645 3.14645C9.84171 2.95118 10.1583 2.95118 10.3536 3.14645Z",
|
|
fill: "currentColor"
|
|
}));
|
|
}
|
|
}); |