10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
"use client";
|
|
|
|
import * as React from 'react';
|
|
import Base from './Base';
|
|
const Paragraph = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement(Base, Object.assign({
|
|
ref: ref
|
|
}, props, {
|
|
component: "div"
|
|
})));
|
|
export default Paragraph; |