DefaultLightThemeDarkTheme
A sort button is a control that enables users to sort a list of items in ascending or descending order.
<div nve-theme="root light" nve-layout="row gap:md pad:md align:wrap">
<nve-sort-button></nve-sort-button>
<nve-sort-button sort="ascending"></nve-sort-button>
<nve-sort-button sort="descending"></nve-sort-button>
</div>
Edit Example
Sort button states (unsorted, ascending, descending) displayed on light theme background.
<div nve-theme="root dark" nve-layout="row gap:md pad:md align:wrap">
<nve-sort-button></nve-sort-button>
<nve-sort-button sort="ascending"></nve-sort-button>
<nve-sort-button sort="descending"></nve-sort-button>
</div>
Edit Example
Sort button states (unsorted, ascending, descending) displayed on dark theme background.