/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
frontend/lib/src/components/elements/Spinner/styled-components.ts
54 строки
2 KB
Ken McGrady
Update copyright header to 2026 (#13491)
02 янв 2026, 16:21
Не верифицирован
02 янв 2026, 16:21
374540a
Код
Авторство
О чём код?
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) * * 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. */ import styled from "@emotion/styled" interface StyledSpinnerProps { cache: boolean } export const StyledSpinner = styled.div<StyledSpinnerProps>( ({ theme, cache }) => ({ ...(cache ? { paddingBottom: theme.spacing.lg, background: `linear-gradient(to bottom, ${theme.colors.bgColor} 0%, ${theme.colors.bgColor} 80%, transparent 100%)`, } : null), }) ) export const StyledSpinnerContainer = styled.div(({ theme }) => ({ display: "flex", alignItems: "center", width: "100%", gap: theme.spacing.sm, })) export const StyledSpinnerText = styled.div(({ theme }) => ({ display: "flex", gap: theme.spacing.sm, alignItems: "baseline", })) // TODO: Maybe move this to `theme/consts.ts`, see // https://github.com/streamlit/streamlit/pull/10085/files#diff-a5cce939bf6c73209a258132c71ccb368a3a1fd57b68b373d242736adb920093 export const StyledSpinnerTimeText = styled.span(({ theme }) => ({ opacity: 0.6, fontSize: theme.fontSizes.sm, lineHeight: theme.lineHeights.none, whiteSpace: "nowrap", }))