@fluid-topics/ft-checkbox
v1.1.82
Published
A checkbox component
Downloads
1,550
Readme
A check box component.
Install
npm install @fluid-topics/ft-checkbox
yarn add @fluid-topics/ft-checkbox
Usage
import {html} from "lit"
import "@fluid-topics/ft-checkbox"
function render() {
return html`
<ft-checkbox name="form-name" checked
@change=${(e: CustomEvent) => console.log("ft-checkbox change to :", e.detail)} >
Check me
</ft-checkbox>`
}