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 };