import { Component, h } from '@stencil/core';
@Component({
tag: 'component-button',
styleUrl: 'button.css'
})
export class Button {
render() {
return [
Button
,
Small Size
Default
Secondary
Tertiary
Default Size
Success
Warning
Danger
Large Size
Light
Medium
Dark
Block Width
A block button
Full Width
A full-width button
];
}
}