import type { AnchorHTMLAttributes } from "react";
import { cx } from "@/utils/cx";
export const GooglePlayButton = ({ size = "md", ...props }: AnchorHTMLAttributes & { size?: "md" | "lg" }) => {
return (
);
};
export const GooglePlayWhiteButton = ({ size = "md", ...props }: AnchorHTMLAttributes & { size?: "md" | "lg" }) => {
return (
);
};
export const AppStoreButton = ({ size = "md", ...props }: AnchorHTMLAttributes & { size?: "md" | "lg" }) => {
return (
);
};
export const GalaxyStoreButton = ({ size = "md", ...props }: AnchorHTMLAttributes & { size?: "md" | "lg" }) => {
return (
);
};
export const AppGalleryButton = ({ size = "md", ...props }: AnchorHTMLAttributes & { size?: "md" | "lg" }) => {
return (
);
};