UNPKG

vue-material-adapter

Version:

Vue 3 wrapper arround Material Components for the Web

18 lines (15 loc) 274 B
import { h } from 'vue'; export default { name: 'mcw-card-action-icons', setup(props, { slots }) { return () => { return h( 'div', { class: ['mdc-card__action-icons'], }, [slots.default?.()], ); }; }, };