UNPKG

react-feather

Version:
38 lines (33 loc) 829 B
import React from 'react'; import PropTypes from 'prop-types'; const Maximize2 = props => { const { color, size, ...otherProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 24 24" fill="none" stroke={color} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" {...otherProps} > <polyline points="15 3 21 3 21 9" /> <polyline points="9 21 3 21 3 15" /> <line x1="21" y1="3" x2="14" y2="10" /> <line x1="3" y1="21" x2="10" y2="14" /> </svg> ); }; Maximize2.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Maximize2.defaultProps = { color: 'currentColor', size: '24', }; export default Maximize2;