@@ -0,0 +1,16 @@
+<template>
+<span :style="{marginRight: right}" />
+</template>
+
+<script>
+export default {
+ name: 'Mt10',
+ props: {
+ right: {
+ type: String,
+ required: false,
+ default: '10px'
+ }
+}
+</script>