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