@primer/react
Version:
An implementation of GitHub's Primer Design System using React
19 lines (18 loc) • 621 B
JavaScript
import { Group } from "./Group.js";
import { Item } from "./Item.js";
import { Divider } from "./Divider.js";
import { List } from "./List.js";
//#region src/deprecated/ActionList/index.ts
/**
* @deprecated Use ActionList with composable API instead. See https://primer.style/react/ActionList for more details.
*/
const ActionList = Object.assign(List, {
/** Collects related `Items` in an `ActionList`. */
Group,
/** An actionable or selectable `Item` with an optional icon and description. */
Item,
/** Visually separates `Item`s or `Group`s in an `ActionList`. */
Divider
});
//#endregion
export { ActionList };