UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

14 lines (13 loc) 505 B
import { jsx as _jsx } from "react/jsx-runtime"; import { forwardRef } from "react"; import classNames from "classnames"; /** * Breadcrumbs display a path to the active page */ const Breadcrumbs = /*#__PURE__*/ forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ _jsx("div", { className: classNames(className, "bf-breadcrumbs"), ref: ref, ...props })); Breadcrumbs.displayName = "Breadcrumbs"; // attach sub-components to the exported object export default Breadcrumbs;