UNPKG

@equinor/eds-core-react

Version:

The React implementation of the Equinor Design System

16 lines (13 loc) 289 B
import { forwardRef } from 'react'; import { jsx } from 'react/jsx-runtime'; const ListItem = /*#__PURE__*/forwardRef(function ListItem({ children, ...props }, ref) { return /*#__PURE__*/jsx("li", { ...props, ref: ref, children: children }); }); export { ListItem };