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