@iconscout/react-unicons
Version:
4,500+ vector icons as easy to use React Components
23 lines (20 loc) • 775 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const UilPostcard = ({ color = 'currentColor', size = 24, ...otherProps }) =>
React.createElement(
'svg',
{
xmlns: 'http://www.w3.org/2000/svg',
width: size,
height: size,
viewBox: '0 0 24 24',
fill: color,
...otherProps
},
React.createElement('path', { d: 'M17,11h1a1,1,0,0,0,1-1V9a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v1A1,1,0,0,0,17,11ZM6,12h5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2ZM22,4H2A1,1,0,0,0,1,5V19a1,1,0,0,0,1,1H22a1,1,0,0,0,1-1V5A1,1,0,0,0,22,4ZM21,18H3V6H21ZM6,16h5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z' })
);
UilPostcard.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
export default UilPostcard;