import React from "react"; import GooglePlay from "../assets/images/googleplay-badge.svg"; import AppleStore from "../assets/images/applestore-badge.svg"; import { Link } from "@material-ui/core"; export interface Props { iconSize: number; googlePlayLink: string; appleStoreLink: string; targetBlank?: boolean; className?: string; } export default function (props: Props) { const target = props.targetBlank ? "_blank" : undefined; const width = props.iconSize; return (
google play apple store
) }