@varlet/ui
Version:
A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.
17 lines (16 loc) • 374 B
JavaScript
import { iconProps } from "../icon/index.mjs";
import { defineListenerProp, pickProps } from "../utils/components.mjs";
const props = {
name: String,
label: String,
icon: pickProps(iconProps, "name"),
namespace: pickProps(iconProps, "namespace"),
badge: {
type: [Boolean, Object],
default: false
},
onClick: defineListenerProp()
};
export {
props
};