import React from 'react'
import PropTypes from 'prop-types'
import { Text as BaseText } from 'rebass'
/**
* @render react
* @name Text
* @example
* Some text
*/
class Text extends React.PureComponent {
static displayName = 'Text'
static propTypes = {
children: PropTypes.node
}
render() {
const { children } = this.props
return (
{children}
)
}
}
export default Text