Lists items without chevrons

Is there a list “item-type” that doesn’t add the chevron to the right of anchors?

Not by default, you would want this to show that the list item is a button. But you can do it with some extra css.

<a class="item custom" href="#">
    Butterfinger
  </a>

.item.custom:after{
      content:"";
}