@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.82 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 Furniture({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Furniture",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M20.002 7v3.365c1.098.547 1.806 1.644 1.966 2.836.214 1.6-.621 3.702-2.86 4.9-.077.04-.153.08-.231.116A3.99 3.99 0 0 1 20.002 21v1h-1.997v-1c0-1.105-.895-2-1.998-2h-7.99a1.999 1.999 0 0 0-1.998 2v1H4.02v-1c0-1.078.426-2.056 1.118-2.775a5.665 5.665 0 0 1-.246-.124c-2.24-1.198-3.075-3.3-2.86-4.9.16-1.2.877-2.305 1.988-2.848V7c0-2.761 2.236-5 4.994-5h5.993a4.997 4.997 0 0 1 4.994 5ZM9.015 4h5.993a2.998 2.998 0 0 1 2.997 3v3.022c-1.252.134-2.359.882-2.868 1.978H8.863c-.506-1.09-1.602-1.835-2.844-1.976V7c0-1.657 1.341-3 2.996-3Zm-.9 10H16.007v-.01a1 1 0 0 0 .846-.834c.092-.583.688-1.156 1.556-1.156.844 0 1.464.608 1.579 1.466.098.734-.283 2.048-1.822 2.87-.987.528-2.248.664-6.166.664s-5.18-.136-6.166-.663c-1.54-.823-1.92-2.137-1.822-2.87.115-.86.735-1.467 1.579-1.467.868 0 1.464.573 1.555 1.156a1 1 0 0 0 .87.837V14h.099Z",
shapeRendering: "geometricPrecision"
}));
}
Furniture.displayName = 'Furniture';
export default createBaseComponent(Furniture);