@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.85 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 AddressPack({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "AddressPack",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M0 1.031a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1v-3ZM0 7.031a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1ZM0 10.026a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1ZM4.236 13.64a.107.107 0 0 0-.058-.18l-1.323-.225-.628-1.168a.107.107 0 0 0-.188 0l-.628 1.168-1.322.225a.107.107 0 0 0-.058.18l.934.943-.191 1.305a.107.107 0 0 0 .152.111l1.207-.582 1.208.582a.107.107 0 0 0 .152-.111l-.191-1.305.934-.943ZM9.236 13.64a.107.107 0 0 0-.058-.18l-1.323-.225-.628-1.168a.107.107 0 0 0-.188 0l-.628 1.168-1.322.225a.107.107 0 0 0-.058.18l.934.943-.191 1.305a.107.107 0 0 0 .152.111l1.207-.582 1.208.582a.107.107 0 0 0 .152-.111l-.191-1.305.934-.943ZM14.178 13.46a.106.106 0 0 1 .058.18l-.934.943.19 1.305a.107.107 0 0 1-.152.111l-1.207-.582-1.207.582a.107.107 0 0 1-.152-.111l.191-1.305-.934-.943a.107.107 0 0 1 .058-.18l1.322-.225.628-1.168a.107.107 0 0 1 .188 0l.628 1.168 1.323.225Z",
shapeRendering: "geometricPrecision"
}));
}
AddressPack.displayName = 'AddressPack';
export default createBaseComponent(AddressPack);