フロントエンド開発の先端を突っ走るNext.js
next.js アプリの初期化( npx create-next-app@latest <アプリ名> ) または yarn create next-app <アプリ名> または bun create next-app <アプリ名> )

黄金比でレイアウトされるLiftkitコンポーネント

Liftkitのインストール

npm install @chainlift/liftkit --save-dev
npx liftkit init

ボタンコンポーネントをインストールする

npm run add button
import Button from "@/components/button";
<Button
  color={'secondary'}
  label={'ボタンのラベル'}
  size="sm"
  variant={'text'}
  startIcon={'trash-2'}
  opticIconShift={false}
  onClick={clearAll}
/>
No.2639
08/21 23:06

edit