UNPKG

pencil.js

Version:

Nice modular interactive 2D drawing library.

26 lines (17 loc) 519 B
# Checkbox Button user input. ![Button example](../../../media/examples/button.png) ## Examples ```js import { Button } from "pencil.js"; const position = [100, 200]; const options = { value: "Click me", }; const button = new Button(position, options); ``` ## ButtonOptions Inherit from [TextOptions](../text/readme.md#textoptions) and from [InputOptions](../input/readme.md#inputoptions). | Name | Type | Default | Comment | | ---- | ---- | ------- | ------- | |value |`String` |`""` |Text of the button |