UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

9 lines (6 loc) 354 B
import { jsxs, jsx } from 'react/jsx-runtime'; import { NJIcon } from '../icon/NJIcon.js'; const NJMoreItem = () => { return (jsxs("li", { className: "nj-pagination__item", children: [jsx(NJIcon, { name: "more_horiz", className: "nj-pagination__more" }), jsx("span", { className: "nj-sr-only", children: "\u2026" })] })); }; export { NJMoreItem };