17 lines
507 B
Vue
17 lines
507 B
Vue
<template>
|
|
<svg :style="sizeStyle" class="icon-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
|
|
<path fill="currentColor"
|
|
d="M500.8 604.779L267.307 371.392l-45.227 45.27 278.741 278.613L779.307 416.66l-45.248-45.248z"></path>
|
|
</svg>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {defineComponent} from "vue";
|
|
import iconComponent from "./iconComponent";
|
|
|
|
export default defineComponent({
|
|
name: "ArrowDown",
|
|
props: iconComponent.props,
|
|
setup: iconComponent.setup
|
|
})
|
|
</script> |