UNPKG

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

Version:

Fluid Design System React

10 lines (7 loc) 298 B
import { jsx } from 'react/jsx-runtime'; import { Utils } from '../../utils/util.js'; function NJRay({ className: hostClass, ...htmlAttributes }) { const className = Utils.classNames('nj-ray', hostClass); return jsx("hr", { ...htmlAttributes, className: className }); } export { NJRay };