api-client/components/app/Logo.vue

22 lines
808 B
Vue
Raw Normal View History

<template>
2020-07-01 05:21:22 +00:00
<svg viewBox="0 0 612.001 612.001">
<path
:fill="color"
data-old_color="#202124"
class="active-path"
data-original="#202124"
d="M64.601 236.822C64.601 394.256 192.786 612 306.001 612 412.582 612 547.4 394.256 547.4 236.822S439.322 0 306 0 64.601 79.388 64.601 236.822zm304.12 116.415c29.475-29.475 70.598-40.195 108.552-32.173 8.021 37.954-2.698 79.077-32.173 108.552-29.475 29.476-70.598 40.196-108.552 32.174-8.022-37.955 2.698-79.078 32.173-108.552zm-233.994-32.174c37.954-8.02 79.077 2.698 108.552 32.173 29.475 29.475 40.195 70.598 32.173 108.552-37.954 8.021-79.077-2.698-108.552-32.173-29.475-29.476-40.194-70.598-32.173-108.552z"
/>
2019-09-26 09:55:37 +00:00
</svg>
</template>
<script>
2019-11-02 05:32:21 +00:00
export default {
props: {
color: {
2020-02-24 18:44:50 +00:00
type: String,
},
},
}
2019-09-26 09:55:37 +00:00
</script>