ボタンを配置します。

ボタンをクリックしたときのアクションは、 JavaScript で記述します。

このモジュールは、主に フォームの送信や、特別な機能をトリガーするボタンとして使用します。
単純にページを遷移したいだけの場合は、代わりに リンクモジュール を使用してください。


## ボタンスタイルのバリエーション

### シンプルなボタン

```html
<button class="px2-btn">Label</button>
```

### ボタンスタイル

```html
プライマリ
<button class="px2-btn px2-btn--primary">Label</button>

セカンダリ
<button class="px2-btn px2-btn--secondary">Label</button>

危険
<button class="px2-btn px2-btn--danger">Label</button>

ダウンロード
<button class="px2-btn px2-btn--download">Label</button>
```

## ボタンサイズ

```html
小さい
<button class="px2-btn px2-btn--sm">Label</button>

大きい
<button class="px2-btn px2-btn--lg">Label</button>
```

## ディスプレイタイプ

```html
ブロック要素
<button class="px2-btn px2-btn--block">Label</button>
```
