@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.26 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 Expand({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Expand",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.006 2a1 1 0 0 1 .999-1H14a1 1 0 0 1 1 1v4a1 1 0 1 1-1.998 0V4.414L10.706 6.71a.998.998 0 1 1-1.413-1.414L11.589 3h-1.584a1 1 0 0 1-1-1ZM6.994 14.002a1 1 0 0 1-.999 1H2a1 1 0 0 1-.999-1v-4a1 1 0 1 1 1.998 0v1.586l2.297-2.295a.998.998 0 1 1 1.412 1.414l-2.296 2.295h1.584a1 1 0 0 1 1 1Z",
shapeRendering: "geometricPrecision"
}));
}
Expand.displayName = 'Expand';
export default createBaseComponent(Expand);