@sandlada/vue-mdc
Version:

37 lines (36 loc) • 614 B
JavaScript
/**
* @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