@atlaskit/icon
Version:
An icon is a symbol representing a command, device, directory, or common action.
31 lines (30 loc) • 1.35 kB
JavaScript
/**
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
* @codegen <<SignedSource::35f1f566a5895dbf1d622ae725fb7d79>>
* @codegenCommand yarn build:icon-glyphs
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _bug = _interopRequireDefault(require("@atlaskit/icon/core/bug"));
var _testSession = _interopRequireDefault(require("@atlaskit/icon/glyph/jira/test-session"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/**
* Migration Icon component for BugIcon.
* This component is BugIcon, with `UNSAFE_fallbackIcon` set to "JiraTestSessionIcon".
*
* Category: multi-purpose
* Location: @atlaskit/icon
* Usage guidance: Multi purpose - Known uses: Request types in JSM, bugs in Jira.
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
*/
const BugIcon = props => /*#__PURE__*/_react.default.createElement(_bug.default, Object.assign({
LEGACY_fallbackIcon: _testSession.default
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
}, props));
BugIcon.Name = 'BugIconMigration';
var _default = exports.default = BugIcon;