UNPKG

@iconscout/react-unicons-solid

Version:

4,500+ vector solid icons as easy to use React Components

22 lines (19 loc) 876 B
import React from 'react'; import PropTypes from 'prop-types'; const UisSanitizerAlt = ({ color = 'currentColor', size = 24, ...otherProps }) => { return 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: 'M16,8V5c0-0.6-0.4-1-1-1h-1V3h1c0.6,0,1-0.4,1-1s-0.4-1-1-1h-4.8C8.5,1,6.9,2,6.1,3.6C5.9,4,6.1,4.6,6.6,4.9c0.5,0.2,1.1,0,1.3-0.4C8.3,3.6,9.2,3,10.2,3H12v1h-1c-0.6,0-1,0.4-1,1v3c-1.7,0-3,1.3-3,3v9c0,1.7,1.3,3,3,3h6c1.7,0,3-1.3,3-3v-9C19,9.3,17.7,8,16,8z M12,6h2v2h-2V6z M14,17h-2c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S14.6,17,14,17z' })); }; UisSanitizerAlt.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; export default UisSanitizerAlt;