UNPKG

@itwin/presentation-components

Version:

React components based on iTwin.js Presentation library

18 lines 797 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ import { translate } from "../common/Utils.js"; /** @internal */ export const FAVORITES_CATEGORY_NAME = "Favorite"; /** @internal */ export const getFavoritesCategory = () => { return { name: FAVORITES_CATEGORY_NAME, label: translate("categories.favorite.label"), description: translate("categories.favorite.description"), priority: Number.MAX_VALUE, expand: true, }; }; //# sourceMappingURL=Utils.js.map