@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.55 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Furniture",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M13.054 13.417c.19-.084.377-.18.563-.29C15.479 12.031 16 10.13 16 9a3.001 3.001 0 0 0-2-2.83V4a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2.17A3.001 3.001 0 0 0 0 9c0 1.13.521 3.031 2.383 4.127.186.11.372.206.563.29A3.984 3.984 0 0 0 2 16h2a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2h2c0-.985-.356-1.886-.946-2.583ZM10 2H6a2 2 0 0 0-2 2v2.17A3.008 3.008 0 0 1 5.83 8h4.34A3.008 3.008 0 0 1 12 6.17V4a2 2 0 0 0-2-2ZM4 9a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1 1 1 0 1 1 2 0c0 .646-.318 1.768-1.398 2.404-.784.461-1.56.596-4.602.596-3.042 0-3.818-.135-4.602-.596C2.318 10.768 2 9.646 2 9a1 1 0 1 1 2 0Z",
shapeRendering: "geometricPrecision"
}));
}
Furniture.displayName = 'Furniture';
export default createBaseComponent(Furniture);