Toggle Button
A button that can be toggled between two states.
Last updated
// when the button is not pressed
<button type="button" aria-label="Watch - Apple iPhone 11" aria-pressed=“false”>
<!-- svg icon goes here -->
</button>
// when the button is pressed
<button type="button" aria-label="Watch - Apple iPhone 11" aria-pressed=“true”>
<!-- svg icon goes here -->
</button>// when the button is "not pressed"
<button type="button">
<!-- svg icon goes here -->
Watch
</button>
// when the button is "pressed"
<button type="button">
<!-- svg icon goes here -->
Watching
</button>