@semcore/icon
Version:
Semrush Icon Component
31 lines • 1.49 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 Picture({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Picture",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M22 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h20ZM4.05 14.19l-1.05 1V4h18v11.23l-4.13-4.13a2.6 2.6 0 0 0-3.59 0l-4.36 4.36-1.28-1.27a2.54 2.54 0 0 0-3.59 0ZM21 18.06l-5.52-5.54a.54.54 0 0 0-.76 0L9.64 17.6a1 1 0 0 1-1.41 0l-2-2a.56.56 0 0 0-.76 0L3 18.07V20h18v-1.94Z",
shapeRendering: "geometricPrecision"
}));
}
Picture.displayName = 'Picture';
export default createBaseComponent(Picture);