/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.2.2
shared/common-adapters/switch-toggle.d.ts
11 строк
283 B
chrisnojima
fix navup command. fix dark on ios switches (#24976)
11 май 2022, 21:06
Не верифицирован
11 май 2022, 21:06
7e6ac82
Код
Авторство
О чём код?
import * as React from 'react' import type * as Styles from '../styles' export type Props = { color: 'green' | 'blue' | 'red' on: boolean style?: Styles.StylesCrossPlatform | null } declare class SwitchToggle extends React.PureComponent<Props> {} export default SwitchToggle