@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.21 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 RootCards({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Cards",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M13 3h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2H2a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2ZM2 5v6h1V5H2Zm3-2v10h6V3H5Zm9 2h-1v6h1V5ZM9 5H7a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Zm0 3H7a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Z",
shapeRendering: "geometricPrecision"
}));
}
RootCards.displayName = 'Cards';
const Cards = createBaseComponent(RootCards);
export { Cards as default };