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
Trailing visual and trailing text can display auxiliary information. They're placed at the right of the item, and can denote status, keyboard shortcuts, or be used to set expectations about what the action does.
107
109
108
110
```javascript live noinline
109
-
const {ActionList} = unreleased
111
+
// import {ActionList} from '@primer/components/drafts'
112
+
const {ActionList} = drafts // ignore docs silliness; import like that ↑
110
113
111
114
render(
112
115
<ActionList>
@@ -137,7 +140,8 @@ render(
137
140
Item dividers allow users to parse heavier amounts of information. They're placed between items and are useful in complex lists, particularly when descriptions or multi-line text is present.
138
141
139
142
```javascript live noinline
140
-
const {ActionList} = unreleased
143
+
// import {ActionList} from '@primer/components/drafts'
144
+
const {ActionList} = drafts // ignore docs silliness; import like that ↑
141
145
142
146
render(
143
147
<ActionList showDividers>
@@ -172,7 +176,8 @@ When you want to add links to the List instead of actions, use `ActionList.LinkI
0 commit comments