UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

17 lines (12 loc) 269 B
import { computed } from 'vue'; const iconProps = { icon: { type: String, default: '' } }; function useMaterialIcon(props) { const materialIcon = computed(() => props.icon || false); return { materialIcon }; } export { iconProps, useMaterialIcon };