Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.15 KB

File metadata and controls

51 lines (31 loc) · 1.15 KB

dnn-chevron

Usage

HTML

<dnn-chevron
    expand-text="expand"
    collapse-text="collapse"
    expanded="false">
</dnn-chevron>

JSX-TSX

<dnn-chevron
    expandText="expand"
    collapseText="collapse"
    expanded="false">
</dnn-chevron>

Properties

Property Attribute Description Type Default
collapseText collapse-text Collapse text for screen readers string "collapse"
expandText expand-text Expand text for screen readers string "expand"
expanded expanded Is the chevron expanded boolean false

Events

Event Description Type
changed Fires up when the expanded status changes CustomEvent<any>

Built with StencilJS