## Button
広く使われている button です。
### 基本的な使い方
:::demo Button のスタイルを定義するには `type`, `plain`, `round`, `circle` を使います。
```html
Default
Primary
Success
Info
Warning
Danger
Plain
Primary
Success
Info
Warning
Danger
Round
Primary
Success
Info
Warning
Danger
```
:::
### 無効化 button
`disabled` 属性は button が無効になっているかどうかを判定します。
:::demo button が無効になっているかどうかを判断するには `disabled` 属性を用いる。これは `Boolean` 値を受け取ります。
```html
Default
Primary
Success
Info
Warning
Danger
Plain
Primary
Success
Info
Warning
Danger
```
:::
### テキスト button
枠線と背景のない button です。
:::demo
```html
Text Button
Text Button
```
:::
### アイコン button
アイコンを使って Button にさらに意味を持たせましょう。アイコンだけでスペースを確保したり、テキストと一緒に使うこともできます。
:::demo アイコンを追加するには `icon` 属性を使います。アイコンのリストは要素のアイコンコンポーネントにあります。テキストの右側にアイコンを追加するには、`` タグを使用します。カスタムアイコンも使用できます。
```html
Search
Upload
```
:::
### button グループ
button グループとして表示され、同じよう操作をグループ化することができます。
:::demo button をグループ化するにはタグ `` を使用します。
```html
Previous Page
Next Page
```
:::
### 読み込み button
button をクリックしてデータを読み込むと、読み込み状態が表示されます。
:::demo ロード状態を表示するために `loading` 属性を `true` に設定します。
```html
Loading
```
:::
### サイズ
Button コンポーネントにはデフォルトサイズの他に、3 つの追加サイズが用意されており、異なるシナリオの中から選択することができます。
:::demo 追加のサイズを `medium`, `small`, `mini` で設定するには、属性 `size` を使用します。
```html
Default
Medium
Small
Mini
Default
Medium
Small
Mini
```
:::
### 属性
| Attribute | Description | Type | Accepted values | Default |
| ----------- | ---------------------------------------------- | ------- | -------------------------------------------------- | ------- |
| size | button サイズ | string | medium / small / mini | — |
| type | button タイプ | string | primary / success / warning / danger / info / text | — |
| plain | プレーン button か判定する | boolean | — | false |
| round | ラウンド(丸みを持った)button か判定する | boolean | — | false |
| circle | サークル(丸)button か判定する | boolean | — | false |
| loading | 読み込み中か判定する | boolean | — | false |
| disabled | button を無効化する | boolean | — | false |
| icon | アイコンクラス名 | string | — | — |
| autofocus | ネイティブ button の `オートフォーカス` と同じ | boolean | — | false |
| native-type | ネイティブ button の `タイプ` と同じ | string | button / submit / reset | button |