Table of Contents
- Introduction
- Installation
- Importing the component
- Peer Dependencies
- Props
- Contributing
pie-checkbox
pie-checkbox
is a Web Component built using the Lit library.
This component can be easily integrated into various frontend frameworks and customized through a set of properties.
Installation
To install pie-checkbox
in your application, run the following on your command line:
$ npm i @justeattakeaway/pie-checkbox
$ yarn add @justeattakeaway/pie-checkbox
For full information on using PIE components as part of an application, check out the Getting Started Guide.
Importing the component
JavaScript
import { PieCheckbox } from '@justeattakeaway/pie-checkbox';
import '@justeattakeaway/pie-checkbox';
React
import { PieCheckbox } from '@justeattakeaway/pie-checkbox/dist/react';
[!NOTE]
When using the React version of the component, please make sure to also
include React as a peer dependency in your project.
Peer Dependencies
[!IMPORTANT]
When using pie-checkbox
, you will also need to include a couple of dependencies to ensure the component renders as expected. See the PIE Wiki for more information and how to include these in your application.
Props
Property | Type | Default | Description |
---|
- | - | - | - |
In your markup or JSX, you can then use these to set the properties for the pie-checkbox
component:
<pie-checkbox></pie-checkbox>
<PieCheckbox></PieCheckbox>
Contributing
Check out our contributing guide for more information on local development and how to run specific component tests.