// @flow import React from 'react'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import Icon from 'component/common/icon'; type Props = { tileLayout?: boolean, }; const PremiumPlusTile = (props: Props) => { const { tileLayout } = props; const title = __('No ads and access to exclusive features!'); const channel = __('Get Odysee Premium+'); const time = __('Now'); return tileLayout ? (
  • {title}

    {channel}
    {time}
  • ) : (
  • {title}
    {channel}
    {time}
  • ); }; export default PremiumPlusTile;