mirror of
https://github.com/ArthurDanjou/artdanj-resume.git
synced 2026-01-27 10:54:14 +01:00
15 lines
384 B
Vue
15 lines
384 B
Vue
<script>
|
|
export default {
|
|
name: 'LeftArrowIcon',
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<svg width="1em" height="1em" viewBox="0 0 256 256" focusable="false">
|
|
<path
|
|
d="M228 128a12 12 0 0 1-12 12H68.97l51.515 51.515a12 12 0 0 1-16.97 16.97l-72-72a12 12 0 0 1 0-16.97l72-72a12 12 0 0 1 16.97 16.97L68.971 116H216a12 12 0 0 1 12 12z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
</template>
|