UNPKG

react-native-komect-uikit

Version:
21 lines (17 loc) 268 B
import React from 'react'; import Text from '../text/Text'; const Title = (props) => { const { text, ...attributes, } = props; return ( <Text numberOfLines={1} {...attributes} > {text} </Text> ); }; export default Title;