import { css } from '@emotion/react'; import { spacing, theme, typography } from '@expo/styleguide'; import { Tab as ReachTab, TabProps } from '@reach/tabs'; type Props = TabProps & { selected?: boolean; }; export const TabButton = ({ selected, ...props }: Props) => ( ); const tabButtonStyles = css({ ...typography.fontSizes[15], fontFamily: typography.fontFaces.medium, transition: 'all 0.05s ease 0s', padding: `${spacing[2.5]}px ${spacing[6]}px ${spacing[2] - 1}px`, border: 0, borderBottom: '0.2rem solid transparent', borderRight: `1px solid ${theme.border.default}`, backgroundColor: 'transparent', cursor: 'pointer', '&:hover': { backgroundColor: theme.background.secondary, }, });