import React from 'react'; import { Text } from 'react-native'; import PropTypes from 'prop-types'; import { themes } from '../../../constants/colors'; import { useTheme } from '../../../theme'; const Code = ({ type, styles, style, literal }) => { const theme = useTheme(); return ( {literal} ); }; Code.propTypes = { type: PropTypes.string, literal: PropTypes.string, styles: PropTypes.object, style: PropTypes.object }; export default Code;