Rocket.Chat.ReactNative/app/containers/Passcode/Title.js

26 lines
398 B
JavaScript
Raw Normal View History

2020-04-23 16:08:50 +00:00
import React from 'react';
import { Text } from 'react-native';
2020-04-23 19:37:00 +00:00
import PropTypes from 'prop-types';
2020-04-23 16:08:50 +00:00
import styles from './styles';
import { themes } from '../../constants/colors';
const Title = ({ theme }) => (
<Text
style={[
styles.textTitle,
{
color: themes[theme].titleText,
}
]}
>
Title
</Text>
);
2020-04-23 19:37:00 +00:00
Title.propTypes = {
theme: PropTypes.string
};
2020-04-23 16:08:50 +00:00
export default Title;