mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-17 20:44:27 +01:00
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
15 lines
558 B
TypeScript
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),
|
|
},
|
|
];
|