Files
vscode/extensions/mermaid-markdown-features/preview-src/shared/iconPackConfig.ts
T
Matt Bierner ea086aed28 Move bierner.markdown-mermaid into core
This makes my mermaid markdown extension builtin. As part of this I've renamed `chat-mermaid-features` to the more generic `markdown-mermaid-features` since this once extension now contributes a consistent mermaid UX for chat, notebooks, and previews

Fixes #293028
2026-05-13 16:04:49 -07:00

15 lines
558 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
export const iconPacks = [
{
name: 'logos',
loader: () => import('@iconify-json/logos').then(m => m.icons),
},
{
name: 'mdi',
loader: () => import('@iconify-json/mdi').then(m => m.icons),
},
];