import React, { forwardRef } from "react"; import PropTypes from "prop-types"; const Codesandbox = forwardRef( ({ color = "currentColor", size = 24, width = 2, ...rest }, ref) => { return ( ); } ); Codesandbox.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Codesandbox.displayName = "Codesandbox"; export default Codesandbox;