UNPKG

react-feather

Version:
45 lines (40 loc) 930 B
import React from 'react'; import PropTypes from 'prop-types'; const CornerDownLeft = props => { const { color, size, ...otherProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 24 24" {...otherProps} > <polyline points="9 10 4 15 9 20" fill="none" stroke={color} strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> <path d="M20 4v7a4 4 0 0 1-4 4H4" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> </svg> ); }; CornerDownLeft.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerDownLeft.defaultProps = { color: 'currentColor', size: '24', }; export default CornerDownLeft;