import { css } from '@emotion/react'; import { breakpoints, theme, iconSize, spacing, typography, ChevronDownIcon, } from '@expo/styleguide'; import React from 'react'; import { BOLD, LinkBase } from '~/ui/components/Text'; import { ExpoLogoIcon } from '~/ui/foundations/icons'; export const Logo = () => (
Expo Docs
); const linkStyle = css` display: flex; flex-direction: row; align-items: center; text-decoration: none; `; const logoStyle = css` float: left; margin-right: ${spacing[2]}px; `; const chevronStyle = css` transform: rotate(-90deg); margin: 0 ${spacing[2]}px; @media screen and (max-width: ${breakpoints.medium}px) { margin-left: ${spacing[0.5]}px; } `; const titleStyle = css` ${typography.fontSizes[20]} @media screen and (max-width: ${breakpoints.medium}px) { display: none; } `; const subtitleStyle = css` color: ${theme.text.default}; ${typography.fontSizes[18]} `;