import React from 'react'; import './Text.css'; const Text = props => { const styleList = []; styleList.push('Text'); if (props.type) { styleList.push('Text' + props.type); } let style = {...props.style}; if (props.textAlign) { style['textAlign'] = props.textAlign.toLowerCase(); } const text = (
{props.text}
); return props.noOwner ? text : (
{text}
); }; export default Text;