UNPKG

vue-material-adapter

Version:

Vue 3 wrapper arround Material Components for the Web

15 lines (13 loc) 287 B
import { h } from 'vue'; export default { name: 'mcw-material-icon', props: { icon: String, tag: { type: String, default: 'i' }, }, setup(props, { attrs }) { return () => { return h(props.tag, { ...attrs, class: 'material-icons' }, props.icon); }; }, };