Paragraph.js 268 B

12345678910
  1. "use client";
  2. import * as React from 'react';
  3. import Base from './Base';
  4. const Paragraph = /*#__PURE__*/React.forwardRef((props, ref) => (/*#__PURE__*/React.createElement(Base, Object.assign({
  5. ref: ref
  6. }, props, {
  7. component: "div"
  8. }))));
  9. export default Paragraph;