/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.3.0
shared/common-adapters/switch-toggle.d.ts
11 строк
273 B
chrisnojima
v630 start (#25648)
08 дек 2023, 00:43
Не верифицирован
08 дек 2023, 00:43
6a3aef2
Код
Авторство
О чём код?
import type * as React from 'react' import type * as Styles from '@/styles' export type Props = { color: 'green' | 'blue' | 'red' on: boolean style?: Styles.StylesCrossPlatform } declare const SwitchToggle: (p: Props) => React.ReactNode export default SwitchToggle