components/elements/BodyText/BodyText.jsxjavascript
import "./BodyText.scss";
/**
* Plain paragraph of body-sized text ("bodyText" element type) - an intro or
* description paragraph below a headline. Distinct from `disclaimer` (small,
* absolutely bottom-pinned legal print) and from `headline` (display-sized).
*
* @param {Object} props
* @param {string} props.text - Paragraph text.
*/
export const BodyText = ({ text }) => {
return <p className="body-text">{text}</p>;
};