@varlet/ui
Version:
A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.
20 lines (19 loc) • 344 B
JavaScript
import { defineListenerProp } from "../utils/components.mjs";
const props = {
name: String,
size: [Number, String],
color: String,
namespace: {
type: String,
default: "var-icon"
},
transition: {
type: [Number, String],
default: 0
},
animationClass: String,
onClick: defineListenerProp()
};
export {
props
};