UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

37 lines (36 loc) 614 B
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ import { IconButtonAppearance } from "./shared.definition.js"; const props = { appearance: { type: String, default: IconButtonAppearance.Standard }, disabled: { type: Boolean, default: false }, defaultSelected: { type: Boolean, default: false }, modelValue: { type: Boolean, default: null }, name: { type: String, default: null }, value: { type: String, default: null } }; export { props }; //# sourceMappingURL=toggle-icon-button.definition.js.map