@activecollab/components
Version:
ActiveCollab Components
17 lines • 493 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import React, { forwardRef } from "react";
import { Typography } from "../Typography";
export const Title2 = /*#__PURE__*/forwardRef((_ref, ref) => {
let {
weight = "light",
children,
...props
} = _ref;
return /*#__PURE__*/React.createElement(Typography, _extends({
weight: weight,
variant: "Title 2",
ref: ref
}, props), children);
});
Title2.displayName = "Title2";
//# sourceMappingURL=Title2.js.map