()
| 9 | import { colors, unit } from '../styles'; |
| 10 | |
| 11 | export default function Footer() { |
| 12 | return ( |
| 13 | <Container> |
| 14 | <InnerContainer> |
| 15 | <MenuItem to="/"> |
| 16 | <HomeIcon /> |
| 17 | Home |
| 18 | </MenuItem> |
| 19 | <MenuItem to="/cart"> |
| 20 | <CartIcon /> |
| 21 | Cart |
| 22 | </MenuItem> |
| 23 | <MenuItem to="/profile"> |
| 24 | <ProfileIcon /> |
| 25 | Profile |
| 26 | </MenuItem> |
| 27 | <LogoutButton /> |
| 28 | </InnerContainer> |
| 29 | </Container> |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * STYLED COMPONENTS USED IN THIS FILE ARE BELOW HERE |
nothing calls this directly
no outgoing calls
no test coverage detected