UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

16 lines (15 loc) 477 B
import { jsx as _jsx } from "react/jsx-runtime"; import { forwardRef } from "react"; import classnames from "classnames"; /** * Title text for Card */ const CardTitle = /*#__PURE__*/ forwardRef(({ children, className, ...props }, ref)=>{ return /*#__PURE__*/ _jsx("div", { ...props, className: classnames("bf-card-title", className), ref: ref, children: children }); }); CardTitle.displayName = "Card.Title"; export default CardTitle;