pencil.js
Version:
Nice modular interactive 2D drawing library.
26 lines (17 loc) • 558 B
Markdown
Button user input.

```js
import { Button } from "pencil.js";
const position = [100, 200];
const options = {
value: "Click me",
};
const button = new Button(position, options);
```
Inherit from [TextOptions](../text/readme.md
| Name | Type | Default | Comment |
|-------|----------|---------|--------------------|
| value | `String` | `""` | Text of the button |