@atlaskit/icon
Version:
An icon is a symbol representing a command, device, directory, or common action.
31 lines (30 loc) • 1.37 kB
JavaScript
/**
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
* @codegen <<SignedSource::bf5f697d891cc6bba8e40c46639eb125>>
* @codegenCommand yarn build:icon-glyphs
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _branch = _interopRequireDefault(require("@atlaskit/icon/core/branch"));
var _branches = _interopRequireDefault(require("@atlaskit/icon/glyph/bitbucket/branches"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/**
* Migration Icon component for BranchIcon.
* This component is BranchIcon, with `UNSAFE_fallbackIcon` set to "BitbucketBranchesIcon".
*
* Category: single-purpose
* Location: @atlaskit/icon
* Usage guidance: Single purpose - Reserved for branches in Bitbucket and Jira.
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
*/
const BranchIcon = props => /*#__PURE__*/_react.default.createElement(_branch.default, Object.assign({
LEGACY_fallbackIcon: _branches.default
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
}, props));
BranchIcon.Name = 'BranchIconMigration';
var _default = exports.default = BranchIcon;