Returnless UI

Feature list

Feature lists are used to display a list of features or benefits of a product or service. They are often used on marketing pages to highlight the key selling points of a product or service.

Usage

  • Access basic company information and details

  • Access and edit bug reports and create new issues

  • Change issue status and assignee of issues

  • Open and resolve conversations

  • Add or remove users and change user roles

js
<script lang="ts" setup>
import { Card, CardSection, FeatureList, FeatureListItem } from '@returnless/focus-ui';
</script>

<template>
  <Card>
    <CardSection>
      <FeatureList>
        <FeatureListItem>Access basic company information and details</FeatureListItem>
        <FeatureListItem>Access and edit bug reports and create new issues</FeatureListItem>
        <FeatureListItem>Change issue status and assignee of issues</FeatureListItem>
        <FeatureListItem>Open and resolve conversations</FeatureListItem>
        <FeatureListItem>Add or remove users and change user roles</FeatureListItem>
      </FeatureList>
    </CardSection>
  </Card>
</template>