Make Toggle labels slottable (#1002)

* feat(toggle): support slottable labels

* yarn build:lib

* docs(toggle): add "Slottable labels" example
This commit is contained in:
Eric Liu 2022-01-12 16:43:27 -10:00 committed by GitHub
commit 32edfa59dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 3 deletions

View file

@ -81,10 +81,14 @@
</slot>
<span class:bx--toggle__switch="{true}">
<span aria-hidden="true" class:bx--toggle__text--off="{true}">
{labelA}
<slot name="labelA">
{labelA}
</slot>
</span>
<span aria-hidden="true" class:bx--toggle__text--on="{true}">
{labelB}
<slot name="labelB">
{labelB}
</slot>
</span>
</span>
</label>