@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.74 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 ListCheck({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ListCheck",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M4.685 1.293a.992.992 0 0 0-1.408 0L1.991 2.586l-.292-.293a.992.992 0 0 0-1.407 0 1.003 1.003 0 0 0 0 1.414l.995 1a.992.992 0 0 0 1.407 0l1.991-2a1.003 1.003 0 0 0 0-1.414Zm0 5a.992.992 0 0 0-1.408 0L1.991 7.586l-.292-.293a.992.992 0 0 0-1.407 0 1.003 1.003 0 0 0 0 1.414l.995 1a.992.992 0 0 0 1.407 0l1.991-2a1.003 1.003 0 0 0 0-1.414Zm-1.408 5a.992.992 0 0 1 1.408 0c.389.39.389 1.024 0 1.414l-1.99 2a.992.992 0 0 1-1.408 0l-.995-1a1.003 1.003 0 0 1 0-1.414.992.992 0 0 1 1.407 0l.292.293 1.286-1.293ZM7.037 2a.998.998 0 0 0-.995 1c0 .552.446 1 .995 1h6.968c.55 0 .995-.448.995-1s-.446-1-.995-1H7.037Zm0 5a.998.998 0 0 0-.995 1c0 .552.446 1 .995 1h6.968c.55 0 .995-.448.995-1s-.446-1-.995-1H7.037Zm-.995 6c0-.552.446-1 .995-1h6.968c.55 0 .995.448.995 1s-.446 1-.995 1H7.037a.998.998 0 0 1-.995-1Z",
shapeRendering: "geometricPrecision"
}));
}
ListCheck.displayName = 'ListCheck';
export default createBaseComponent(ListCheck);