import React from 'react'; import { Text, TextProps } from 'react-native'; type TextAtomProps = TextProps & { }; const TextAtom = ({ ...props }: TextAtomProps) => { return ( {props.children} ); }; export default TextAtom;