Button

Just a button

Basic usage

<m-button type="primary">Primary</m-button>
<m-button type="success">Success</m-button>
<m-button type="warning">Warning</m-button>
<m-button type="danger">Danger</m-button>

Size

<m-button type="primary" size="lg">Large</m-button>
<m-button type="primary" size="sm">Small</m-button>

Outlined

<m-button type="primary" outline>Primary</m-button>
<m-button type="success" outline>Success</m-button>
<m-button type="warning" outline>Warning</m-button>
<m-button type="danger" outline>Danger</m-button>

Disabled

<m-button type="primary" disabled>Primary(disabled)</m-button>
<m-button type="primary" outline disabled>Primary(outline & disabled)</m-button>