UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

13 lines (12 loc) 427 B
import { jsx as _jsx } from "react/jsx-runtime"; import { forwardRef } from "react"; import classNames from "classnames"; const InlineSeparator = /*#__PURE__*/ forwardRef((props, ref)=>{ return /*#__PURE__*/ _jsx("div", { ...props, className: classNames("bf-inline-separator", props?.className), ref: ref }); }); InlineSeparator.displayName = "Inline.Separator"; export default InlineSeparator;