import {addIcon} from "obsidian"; export const ICON_SORT_ENABLED_ACTIVE: string = 'custom-sort-icon-active' export const ICON_SORT_MOBILE_INITIAL: string = 'custom-sort-icon-mobile-initial' export const ICON_SORT_SUSPENDED: string = 'custom-sort-icon-suspended' export const ICON_SORT_ENABLED_NOT_APPLIED: string = 'custom-sort-icon-enabled-not-applied' export const ICON_SORT_SUSPENDED_SYNTAX_ERROR: string = 'custom-sort-icon-syntax-error' export const ICON_SORT_SUSPENDED_GENERAL_ERROR: string = 'custom-sort-icon-general-error' export function addIcons() { addIcon(ICON_SORT_ENABLED_ACTIVE, ` ` ) addIcon(ICON_SORT_MOBILE_INITIAL, ` ` ) addIcon(ICON_SORT_SUSPENDED, ` ` ) addIcon(ICON_SORT_SUSPENDED_SYNTAX_ERROR, ` ` ) addIcon(ICON_SORT_SUSPENDED_GENERAL_ERROR, ` ` ) addIcon(ICON_SORT_ENABLED_NOT_APPLIED, ` ` ) }