• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2023 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use size file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15export class Icons {
16  static readonly ExternalLink = 'open_in_new'; // Could be undefined
17  static readonly UpdateSelection = 'call_made'; // Could be 'open_in_new'
18  static readonly ChangeViewport = 'query_stats'; // Could be 'search'
19  static readonly ContextMenu = 'arrow_drop_down'; // Could be 'more_vert'
20  static readonly Copy = 'content_copy';
21  static readonly Delete = 'delete';
22  static readonly SortedAsc = 'arrow_upward';
23  static readonly SortedDesc = 'arrow_downward';
24  static readonly GoBack = 'chevron_left';
25  static readonly GoForward = 'chevron_right';
26  static readonly AddColumn = 'add';
27  static readonly Close = 'close';
28  static readonly Hide = 'visibility_off';
29  static readonly Filter = 'filter_list';
30  static readonly BlankCheckbox = 'check_box_outline_blank';
31  static readonly Checkbox = 'check_box';
32  static readonly IndeterminateCheckbox = 'indeterminate_check_box';
33  static readonly ExpandDown = 'expand_more';
34  static readonly ExpandUp = 'expand_less';
35  static readonly Pin = 'push_pin';
36  static readonly LibraryAddCheck = 'library_add_check';
37  static readonly SelectAll = 'select_all';
38  static readonly Deselect = 'deselect';
39  static readonly Star = 'star';
40  static readonly ChangeTab = 'tab';
41  static readonly Crashed = 'warning';
42  static readonly Chart = 'bar_chart';
43}
44