UNPKG

@sandlada/vue-mdc

Version:

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

46 lines (45 loc) 793 B
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ import { FormSubmitterType } from "../../internals/controller/form-submitter.js"; import { IconButtonAppearance } from "./shared.definition.js"; const props = { appearance: { type: String, default: IconButtonAppearance.Standard }, disabled: { type: Boolean, default: false }, type: { type: String, default: FormSubmitterType.Button }, href: { type: String, default: null }, target: { type: String, default: null }, form: { type: String, default: null }, name: { type: String, default: null }, value: { type: String, default: null } }; export { props }; //# sourceMappingURL=icon-button.definition.js.map