@elastic/eui
Version:
Elastic UI Component Library
44 lines (43 loc) • 3.14 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _typeof = require("@babel/runtime/helpers/typeof");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.icon = void 0;
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var React = _interopRequireWildcard(require("react"));
var _react2 = require("@emotion/react");
var _excluded = ["title", "titleId"];
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
var EuiIconScissors = function EuiIconScissors(_ref) {
var title = _ref.title,
titleId = _ref.titleId,
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
return (0, _react2.jsx)("svg", (0, _extends2.default)({
xmlns: "http://www.w3.org/2000/svg",
width: 16,
height: 16,
viewBox: "0 0 16 16",
"aria-labelledby": titleId
}, props), title ? (0, _react2.jsx)("title", {
id: titleId
}, title) : null, (0, _react2.jsx)("path", {
d: "M3.5 12a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1Zm0-9a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1Z"
}), (0, _react2.jsx)("path", {
fillRule: "evenodd",
d: "M13.999 1a1 1 0 0 1 .708 1.707L9.414 8l5.293 5.293A1 1 0 0 1 14 15h-2c-.23 0-.453-.08-.63-.223l-.072-.065-4.326-4.27-1.147 1.146c.111.283.175.59.175.912a2.5 2.5 0 1 1-4.257-1.778L4.5 8 1.735 5.271l-.012-.014A2.5 2.5 0 1 1 6 3.5c0 .322-.064.628-.175.911l1.147 1.147 4.325-4.27.073-.065A.998.998 0 0 1 11.999 1h2ZM3.5 11a1.5 1.5 0 1 0 1.22.629l-.013-.018A1.507 1.507 0 0 0 3.5 11Zm4.179-1.266L12 14h2L8.707 8.707 7.679 9.734Zm0-3.47v.002l-3.813 3.763a2.49 2.49 0 0 1 1.402.703L14 2h-2.001l-4.32 4.265Zm-2.411-.996a2.49 2.49 0 0 1-1.402.702l1.345 1.328L6.26 6.26l-.993-.993ZM3.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
clipRule: "evenodd"
}));
};
var icon = exports.icon = EuiIconScissors;