| 123456789101112131415 |
- import React from 'react'
- import PropTypes from 'prop-types';
-
- const Paragraph = (props) => {
- return (
- <p className={"paragraph pb-8p" + (props.textCenter ? " text-center" : '') + (props.textRight ? " text-end" : '')}>{props.children}</p>
- )
- }
-
- Paragraph.propTypes = {
- textRight: PropTypes.bool,
- textCenter:PropTypes.bool,
- };
-
- export default Paragraph;
|