0.4.4 • Published 10 months ago
@99mini/atom v0.4.4
Install
$ yarn add @99mini/atom
Usage
import
import from @99mini/atom
or @99mini/atom/<component>
. You can do a default import using atom/<component>
.
import { Button } from "@99mini/atom";
import Badge from "@99mini/atom/Badge";
Table of Contents
Button
Default Button
import { Button } from "@99mini/atom";
const App = () => {
return <Button>Hello @99mini/atom/Button</Button>;
};
Anchor Button
import { Button } from "@99mini/atom";
const App = () => {
return (
<Button href={"https://github.com/99mini/frontend-libraries"}>
{"Let use @99mini/<libraries>"}
</Button>
);
};
CheckBox
import { CheckBox } from "@99mini/atom";
const App = () => {
return (
<div>
<CheckBox label="default" />
<CheckBox checked label="checked" />
<CheckBox disabled label="disabled" />
<CheckBox required label="required" />
</div>
);
};
Skeleton
Progress
LinearProgress
Dependency
0.4.4
10 months ago
0.3.0
1 year ago
0.4.1
1 year ago
0.4.0
1 year ago
0.4.3
1 year ago
0.4.2
1 year ago
0.2.1
1 year ago
0.2.0
1 year ago
0.2.1-alpha.0
1 year ago
0.1.1
1 year ago
0.1.0-alpha.1
1 year ago
0.1.0-alpha.0
1 year ago
0.1.0
1 year ago