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