You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { ListItemButtonMixin } from './list-item-button-mixin.js';
import { LitElement } from 'lit';
/**
* A component for a "listitem" child within a list. It provides semantics, basic layout, breakpoints for responsiveness, a link for navigation, and selection.
* @slot - Default content placed inside of the component
* @slot illustration - Image associated with the list item located at the left of the item
* @slot actions - Actions (e.g., button icons) associated with the listen item located at the right of the item
* @slot nested - Nested d2l-list element
*/
class ListItemButton extends ListItemButtonMixin(LitElement) {