🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More
Socket
Book a DemoInstallSign in
Socket

@instructure/ui-list

Package Overview
Dependencies
Maintainers
41
Versions
1555
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instructure/ui-list

Components for displaying vertical or horizontal lists.

latest
Source
npmnpm
Version
11.4.0
Version published
Weekly downloads
9.4K
-35.29%
Maintainers
41
Weekly downloads
 
Created
Source

ui-list

npm MIT License Code of Conduct

Components for displaying vertical or horizontal lists.

Components

The ui-list package contains the following:

  • InlineList
  • List

Installation

npm install @instructure/ui-list

Usage

import React from 'react'
import { List } from '@instructure/ui-list'

const MyList = () => {
  return (
    <List>
      <List.Item>List Item One</List.Item>
      <List.Item>List Item Two</List.Item>
      <List.Item>List Item Three</List.Item>
    </List>
  )
}
import React from 'react'
import { InlineList } from '@instructure/ui-list'

const MyList = () => {
  return (
    <InlineList>
      <InlineList.Item>List Item One</InlineList.Item>
      <InlineList.Item>List Item Two</InlineList.Item>
      <InlineList.Item>List Item Three</InlineList.Item>
    </InlineList>
  )
}

FAQs

Package last updated on 20 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts