diff --git a/packages/core/src/components/checkbox/readme.md b/packages/core/src/components/checkbox/readme.md index 6b7c4a495c..7de7bbb07f 100644 --- a/packages/core/src/components/checkbox/readme.md +++ b/packages/core/src/components/checkbox/readme.md @@ -1,29 +1,42 @@ # ion-checkbox - -Placed in an `ion-item` or used as a stand-alone checkbox. +Checkboxes allow the selection of multiple options from a set of options. They appear as checked (ticked) when activated. Clicking on a checkbox will toggle the `checked` property. They can also be checked programmatically by setting the `checked` property. ```html + + - + + - - Pepperoni - - + + - - Sausage - - + + + + + + - - Mushrooms - - + + + + Pepperoni + + - + + Sausage + + + + + Mushrooms + + + ```