1import { Button } from '@expo/styleguide';
2import { ArrowUpRightIcon } from '@expo/styleguide-icons';
3
4type CreateAppButtonProps = { href: string; name: string };
5
6export const CreateAppButton = ({ href, name }: CreateAppButtonProps) => (
7  <Button
8    className="flex w-fit justify-center max-medium:min-w-full"
9    href={href}
10    openInNewTab
11    rightSlot={<ArrowUpRightIcon />}>
12    Create {name} App
13  </Button>
14);
15