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