import React from 'react'; import MaterialIcon from 'material-icons-react'; import styled from 'styled-components'; import selectedTheme from './themeManager'; const AppContainer = styled.div` display: flex; flex: auto 25%; padding: 1rem; `; const IconContainer = styled.div` margin-right: 0.5vh; `; const DetailsContainer = styled.div` display: flex; flex-direction: column; `; const AppLink = styled.a` font-family: Roboto, sans-serif; flex: 1 0 auto; color: ${selectedTheme.mainColor}; font-weight: 500; text-transform: uppercase; margin: 0; text-decoration: none; font-size: 1rem; &:hover { text-decoration: underline; } `; const AppDescription = styled.p` font-family: Roboto, sans-serif; text-transform: uppercase; margin: 0; font-size: 0.65rem; font-weight: 400; color: ${selectedTheme.accentColor}; `; export const App = ({ name, icon, url, displayURL }) => ( {name} {displayURL} );