import { ButtonVariant } from './button'; import { AnchorInterface } from './button.interface'; export interface IxButtonComponent extends AnchorInterface { /** * Annotate with @Prop() decorator */ variant: ButtonVariant; /** * Annotate with @Prop({ reflect: true }) decorator */ disabled: boolean; /** * Annotate with @Prop() decorator */ type: 'button' | 'submit'; /** * Annotate with @Prop() decorator */ loading: boolean; /** * Annotate with @Prop() decorator */ icon?: string; /** * Annotate with @Prop() decorator */ ariaLabelButton?: string; }