@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.38 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Education({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Education",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11.553 3.106a1 1 0 0 1 .894 0l11 5.5a1 1 0 0 1 0 1.788l-.447.224v6.65A2 2 0 0 1 24 19v4h-4v-4a2 2 0 0 1 1-1.732v-5.65l-2 1v4.84a1 1 0 0 1-.237.647c-3.4 4.013-10.127 4.013-13.526 0A1 1 0 0 1 5 17.459v-4.841L.553 10.394a1 1 0 0 1 0-1.788l11-5.5Zm.894 12.788L17 13.618v3.458c-2.591 2.718-7.409 2.718-10 0v-3.458l4.553 2.276a1 1 0 0 0 .894 0ZM3.237 9.5 12 13.882 20.764 9.5 12 5.118 3.236 9.5Z",
shapeRendering: "geometricPrecision"
}));
}
Education.displayName = 'Education';
export default createBaseComponent(Education);