/** * @prettier */ import React from "react" import PropTypes from "prop-types" const Copy = ({ className = null, width = 15, height = 16, ...rest }) => ( ) Copy.propTypes = { className: PropTypes.string, width: PropTypes.string, height: PropTypes.string, } export default Copy