[WIP] Добавил базовую иконку, перевел часть иконок в компоненты

This commit is contained in:
DwCay
2023-07-11 18:04:42 +03:00
parent a5bbd9d895
commit daf07924a6
21 changed files with 356 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<template lang="pug">
base-icon(:icon-color="color")
path(fill-rule="evenodd" clip-rule="evenodd" d="M17.5304 8.46967C17.8233 8.76256 17.8233 9.23744 17.5304 9.53033L10.5304 16.5303C10.2375 16.8232 9.76261 16.8232 9.46971 16.5304L6.46967 13.5303C6.17678 13.2374 6.17678 12.7626 6.46967 12.4697C6.76256 12.1768 7.23743 12.1768 7.53033 12.4697L10 14.9394L16.4697 8.46967C16.7626 8.17678 17.2375 8.17678 17.5304 8.46967Z")
</template>
<script>
import BaseIcon from "@/components/base/BaseIcon.vue";
export default {
name: "IconOk",
components: { BaseIcon },
props: {
color: String,
},
};
</script>