/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export default class Constants { static FULL_WIDTH = '100%'; static FULL_HEIGHT = '100%'; static DIALOG_WIDTH = 395; static DIALOG_HEIGHT = 117; static DIALOG_BORDER_RADIUS = 32; static DIALOG_TITLE_FONT_SIZE = 16; static DIALOG_TITLE_FONT_WEIGHT = 400; static DIALOG_TITLE_OPACITY = 1; static DIALOG_TITLE_MARGIN_TOP = 24; static DIALOG_TITLE_MARGIN_BOTTOM = 16; static DIALOG_TITLE_LINE_HEIGHT = 22; static BUTTON_HEIGHT = 40; static BUTTON_WIDTH = 100; static BUTTON_MARGIN = 7; static BUTTON_TEXT_FONT_SIZE = 16; static BUTTON_TEXT_FONT_WEIGHT = 500; static SPLIT_FONT_SIZE = 24; }