@iconscout/react-unicons
Version:
4,500+ vector icons as easy to use React Components
23 lines (20 loc) • 656 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const UilWindows = ({ 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: 'M22 2 11.2 3.6v8l10.8-.1V2zM10.2 12.5 2 12.4v6.8l8.1 1.1.1-7.8zM2 4.8v6.8h8.1V3.7L2 4.8zm9.1 7.7v7.9L22 22v-9.4l-10.9-.1z' })
);
UilWindows.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
export default UilWindows;