1.0.4 • Published 1 year ago

lkg-button v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

安装

yarn add lkg-button

或

npm install lkg-button

如何使用

线性按钮

import { LineButton } from 'lkg-button';

export default () => (
  <>
    <LineButton text="default"></LineButton>
    <LineButton text="success" type="success"></LineButton>
    <LineButton text="danger" type="danger"></LineButton>
    <LineButton text="warn" type="warn"></LineButton>
    <LineButton text="info" type="info"></LineButton>
  </>
);