Skip to content

Instantly share code, notes, and snippets.

@diverted247
Created February 25, 2016 17:21
Show Gist options
  • Save diverted247/ec132d4bb6242f0c8971 to your computer and use it in GitHub Desktop.
Save diverted247/ec132d4bb6242f0c8971 to your computer and use it in GitHub Desktop.
Vue SVG Arrow component
<template lang="i18n">
<svg xmlns="http://www.w3.org/2000/svg" :width.once="width" :height.once="height" viewBox="0 0 8 13">
<path d="M6.4 12.7L.3 6.5 6.4.2l1.3 1.3-4.9 5 4.9 4.9z" :transform.once="'rotate('+rotation+')'" :fill="color"/>
</svg>
</template>
<script>
export default {
data: function(){
return {};
},
props:{
rotation:{
type: String,
default:'0'
},
color:{
type: String,
default: '#969696'
},
height:{
type: String,
default:'1em'
},
width:{
type: String,
default:'1em'
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment