UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

27 lines (26 loc) 843 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { InjectionToken } from "@angular/core"; import { commentIcon, moreHorizontalIcon, sparklesIcon } from "@progress/kendo-svg-icons"; /** * @hidden */ export const MY_TOKEN = new InjectionToken('COMMAND_TOKEN'); /** * @hidden */ export const DEFAULT_SVG_ICONS = { prompt: sparklesIcon, output: commentIcon, command: moreHorizontalIcon }; /** * @hidden */ export const DEFAULT_ICONS = { prompt: 'sparkles', output: 'comment', command: 'more-horizontal' };