UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 1.8 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { WebButtonBaseDescription } from "./WebButtonBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let WebIconButtonDescription = /*@__PURE__*/ (() => { class WebIconButtonDescription extends WebButtonBaseDescription { get_type() { return "WebIconButton"; } constructor() { super(); this.ad = null; this.ac = null; this.aa = false; this.ae = null; } get iconName() { return this.ad; } set iconName(a) { this.ad = a; this.g("IconName"); } get collection() { return this.ac; } set collection(a) { this.ac = a; this.g("Collection"); } get mirrored() { return this.aa; } set mirrored(a) { this.aa = a; this.g("Mirrored"); } get variant() { return this.ae; } set variant(a) { this.ae = a; this.g("Variant"); } } WebIconButtonDescription.$t = /*@__PURE__*/ markType(WebIconButtonDescription, 'WebIconButtonDescription', WebButtonBaseDescription.$); return WebIconButtonDescription; })();