/
sanagl
/
ui-kit-ce
Обзор
Документация
Войти
/
sanagl
/
ui-kit-ce
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/progress/examples/DifferentCircularLineColor.tsx
22 строки
555 B
Denis Svyatovets
v1.10.0
27 мар 2024, 13:48
27 мар 2024, 13:48
c9029ae
Код
Авторство
О чём код?
import React from 'react' import { CircularProgress, useTheme } from '@v-uik/base' export const DifferentCircularLineColor = (): JSX.Element => { const theme = useTheme() return ( <div style={{ display: 'flex' }}> <div style={{ marginRight: 40 }}> <CircularProgress color="purple" /> </div> <div style={{ marginRight: 40 }}> <CircularProgress color="#008000" /> </div> <div style={{ marginRight: 40 }}> <CircularProgress color={theme.sys.color.errorAlpha} /> </div> </div> ) }