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