UNPKG

@varlet/ui

Version:

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.

17 lines (16 loc) 466 B
import { iconProps } from "../icon/index.mjs"; import { pickProps } from "../utils/components.mjs"; const props = { activeIcon: { type: String, default: "check" }, currentIcon: pickProps(iconProps, "name"), inactiveIcon: pickProps(iconProps, "name"), activeIconNamespace: pickProps(iconProps, "namespace"), currentIconNamespace: pickProps(iconProps, "namespace"), inactiveIconNamespace: pickProps(iconProps, "namespace") }; export { props };