@scaleflex/icons
Version:
SVG icons as React components
27 lines • 1.92 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Thesaurus = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Thesaurus",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M13.3953 50.0006C9.86273 50.0006 6.99994 47.1378 6.99994 43.6053V6.39596C6.99994 4.70061 7.67436 3.0727 8.87203 1.8727C10.072 0.675029 11.6999 0.000610352 13.3953 0.000610352H16.2092H41.3023C42.2651 0.000610352 43.0465 0.782006 43.0465 1.7448V38.9541C43.0465 39.9169 42.2651 40.6983 41.3023 40.6983H16.2092H13.3953C11.7906 40.6983 10.4883 42.0006 10.4883 43.6053C10.4883 45.2099 11.7906 46.5122 13.3953 46.5122H41.3023C42.2651 46.5122 43.0465 47.2936 43.0465 48.2564C43.0465 49.2192 42.2651 50.0006 41.3023 50.0006H13.3953ZM33.3255 12.7913H18.5813C17.6185 12.7913 16.8371 12.0099 16.8371 11.0471C16.8371 10.0843 17.6185 9.30294 18.5813 9.30294H33.3255C34.2883 9.30294 35.0697 10.0843 35.0697 11.0471C35.0697 12.0099 34.2883 12.7913 33.3255 12.7913ZM18.588 20.5006H33.3322C34.295 20.5006 35.0764 19.7192 35.0764 18.7564C35.0764 17.7936 34.295 17.0122 33.3322 17.0122H18.588C17.6252 17.0122 16.8438 17.7936 16.8438 18.7564C16.8438 19.7192 17.6252 20.5006 18.588 20.5006Z",
fill: color
}));
});
export default Thesaurus;