@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 Title1 = /*#__PURE__*/forwardRef((_ref, ref) => {
let {
weight = "light",
children,
...props
} = _ref;
return /*#__PURE__*/React.createElement(Typography, _extends({
weight: weight,
variant: "Title 1",
ref: ref
}, props), children);
});
Title1.displayName = "Title1";
//# sourceMappingURL=Title1.js.map