import React from 'react'; import { Text, Container, Glyph } from './styled'; type InfoPropTypes = { text: string; }; const Info = ({ text }: InfoPropTypes) => ( {text} ); export default Info;