Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 2x | import { IconAliases } from 'vuetify';
export const aliases: Partial<IconAliases> = {
collapse: 'keyboard_arrow_up',
complete: 'check',
cancel: 'cancel',
close: 'close',
delete: 'cancel',
clear: 'cancel',
success: 'check_circle',
info: 'info',
warning: 'error',
error: 'cancel',
prev: 'chevron_left',
next: 'chevron_right',
checkboxOn: 'check_box',
checkboxOff: 'check_box_outline_blank',
checkboxIndeterminate: 'indeterminate_check_box',
delimiter: 'circle',
sortAsc: 'arrow_upward',
sortDesc: 'arrow_downward',
expand: 'keyboard_arrow_down',
menu: 'menu',
subgroup: 'arrow_drop_down',
dropdown: 'arrow_drop_down',
radioOn: 'radio_button_checked',
radioOff: 'radio_button_unchecked',
edit: 'edit',
ratingEmpty: 'star_rate',
ratingFull: 'filled:star_rate',
ratingHalf: 'star_rate_half',
loading: 'cached',
first: 'first_page',
last: 'last_page',
unfold: 'unfold_more',
file: 'attach_file',
plus: 'add',
minus: 'remove',
calendar: 'calendar_month',
treeviewCollapse: 'arrow_drop_down',
treeviewExpand: 'arrow_right',
eyeDropper: 'colorize',
};
|