xref: /expo/docs/ui/components/Home/HomeButton.tsx (revision 2f97575e)
1import { spacing, typography } from '@expo/styleguide';
2import React from 'react';
3
4import { Button, ButtonProps } from '~/ui/components/Button';
5
6export const HomeButton = ({ children, style, ...rest }: ButtonProps) => (
7  <Button
8    {...rest}
9    style={{
10      ...typography.fontSizes[14],
11      height: 36,
12      paddingLeft: spacing[3],
13      paddingRight: spacing[3],
14      position: 'absolute',
15      bottom: 28,
16      zIndex: 10,
17      ...style,
18    }}>
19    {children}
20  </Button>
21);
22