- All non-modals no longer reference Bootstrap or Font Awesome (#20) - Removed "full request" button from journal page (#16) - Added role attributes in many places
16 lines
198 B
Vue
16 lines
198 B
Vue
<template lang="pug">
|
|
i.material-icons(v-html='icon')
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'md-icon',
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|