/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/components/RNTesterText.js
39 строк
1 KB
Tim Yung
xplat/js: Auto-fix `react-prefer-namespace-import` ESLint Rule (#56233)
27 мар 2026, 03:04
27 мар 2026, 03:04
bfb6870
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ import type {TextProps} from 'react-native'; import {RNTesterThemeContext} from './RNTesterTheme'; import * as React from 'react'; import {useContext, useMemo} from 'react'; import {Text} from 'react-native'; type Props = Readonly<{ ...TextProps, variant?: 'body' | 'label' | 'caption', }>; export default function RNTesterText(props: Props): React.Node { const {style, variant, ...rest} = props; const theme = useContext(RNTesterThemeContext); const color = useMemo(() => { switch (variant) { case 'body': return theme.LabelColor; case 'label': return theme.SecondaryLabelColor; case 'caption': return theme.TertiaryLabelColor; default: return theme.LabelColor; } }, [variant, theme]); return <Text {...rest} style={[{color}, style]} />; }