1234567891011121314151617181920212223242526272829303132 |
- <template>
- <i class="icon fas" :class="[`fa-${name}`, `icon-size-${size}`]"> </i>
- </template>
- <script>
- export default {
- props: {
- name: {
- default: ''
- },
- size: {
- size: 'normal'
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .icon {
- &-size {
- &-small {
- font-size: 15px;
- }
- &-normal {
- font-size: 18px;
- }
- &-large {
- font-size: 21px;
- }
- }
- }
- </style>
|