UNPKG

covfefe-react

Version:
17 lines (13 loc) 290 B
import React from 'react' import PropTypes from 'prop-types' import covfefe from 'covfefe' export default function Covfefe ({children, ...rest}) { if (typeof children !== 'string') { return children; } return ( <span {...rest}> {covfefe(children)} </span> ); }