14 lines
613 B
JavaScript
14 lines
613 B
JavaScript
|
import { h, defineComponent } from 'vue';
|
||
|
export default defineComponent({
|
||
|
name: 'ChevronDown',
|
||
|
render() {
|
||
|
return h("svg", {
|
||
|
viewBox: "0 0 16 16",
|
||
|
fill: "none",
|
||
|
xmlns: "http://www.w3.org/2000/svg"
|
||
|
}, h("path", {
|
||
|
d: "M3.14645 5.64645C3.34171 5.45118 3.65829 5.45118 3.85355 5.64645L8 9.79289L12.1464 5.64645C12.3417 5.45118 12.6583 5.45118 12.8536 5.64645C13.0488 5.84171 13.0488 6.15829 12.8536 6.35355L8.35355 10.8536C8.15829 11.0488 7.84171 11.0488 7.64645 10.8536L3.14645 6.35355C2.95118 6.15829 2.95118 5.84171 3.14645 5.64645Z",
|
||
|
fill: "currentColor"
|
||
|
}));
|
||
|
}
|
||
|
});
|