mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
29 lines
400 B
Vue
29 lines
400 B
Vue
<template>
|
|
<span :class="'icon fa fa-' + iname" aria-hidden="true" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Icon',
|
|
props: {
|
|
iname: { type: String, required: true }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.icon {
|
|
font-size: inherit;
|
|
min-width: 1rem;
|
|
text-align: center;
|
|
|
|
&.lg {
|
|
width: 3rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
&.fs-sm {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
</style>
|