@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
13 lines (12 loc) • 425 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { forwardRef } from "react";
import classNames from "classnames";
const InlineStretch = /*#__PURE__*/ forwardRef((props, ref)=>{
return /*#__PURE__*/ _jsx("div", {
...props,
className: classNames("bf-inline-stretch-wrapper", props?.className),
ref: ref
});
});
InlineStretch.displayName = "Inline.Stretch";
export default InlineStretch;