UNPKG

417 BTypeScriptView Raw
1import React, { Component } from 'react'
2import { Text } from 'react-native'
3import { SsDescriptionPropsType } from '../utils/PropTypes'
4
5export default class SsDescription extends Component<SsDescriptionPropsType, {}> {
6 render() {
7 const { initialValue } = this.props
8 return (
9 <Text style={{ color: '#888888', fontSize: 12, marginHorizontal: 20, marginVertical: 8 }}>{initialValue}</Text>
10 )
11 }
12}