"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.SpanIcon = SpanIcon; var _react = _interopRequireDefault(require("react")); var _eui = require("@elastic/eui"); var _get_span_icon = require("./get_span_icon"); /* * 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; you may not use this file except in compliance with the Elastic License * 2.0. */ function SpanIcon({ type, subtype }) { const icon = (0, _get_span_icon.getSpanIcon)(type, subtype); return /*#__PURE__*/_react.default.createElement(_eui.EuiIcon, { type: icon, size: "l", title: type || subtype }); }