@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.25 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootExpand({
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"
}));
}
RootExpand.displayName = 'Expand';
const Expand = createBaseComponent(RootExpand);
export { Expand as default };