import * as React from "react"; import { PlatformProps } from "../../../shared/types"; import withPlatform from "../../platform/withPlatform"; type Props = { style?: any; } & PlatformProps; function Gmail(props: Props) { return ( ); } export default withPlatform(Gmail);