mwcpl
Version:
Master's Web Component Pattern Library
33 lines (32 loc) • 713 B
TypeScript
import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplButton implements ComponentInterface {
/**
* Label for the button.
*/
label: string;
/**
* Makes the button text uppercase.
*/
uppercase: boolean;
/**
* Creates a fullwidth button.
*/
fullwidth: boolean;
/**
* Creates an outlined button.
*/
outlined: boolean;
/**
* Makes the button non interactive.
*/
disabled: boolean;
/**
* Creates a button with rounded corners.
*/
rounded: boolean;
/**
* Adds a loading indicator.
*/
loading: boolean;
render(): any;
}