@activecollab/components
Version:
ActiveCollab Components
18 lines • 659 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["children"];
import React, { forwardRef } from "react";
import { Typography } from "../Typography";
export const Header2 = /*#__PURE__*/forwardRef((_ref, ref) => {
let {
children
} = _ref,
props = _objectWithoutPropertiesLoose(_ref, _excluded);
return /*#__PURE__*/React.createElement(Typography, _extends({
weight: "bold",
variant: "Header 2",
ref: ref
}, props), children);
});
Header2.displayName = "Header2";
//# sourceMappingURL=Header2.js.map