import React from "react"; import styled from "styled-components"; import selectedTheme from "./themeManager"; import Icon from "./icon"; // File for elements that are/can be reused across the entire site. export const ListContainer = styled.div` padding: 2rem 0; `; export const Headline = styled.h2` display: inline-block; font-weight: 900; text-transform: uppercase; margin: 0; font-size: 1.5rem; color: ${selectedTheme.mainColor}; `; export const SubHeadline = styled.h3` display: inline-block; font-weight: 700; text-transform: uppercase; margin: 0; color: ${selectedTheme.mainColor}; `; export const ItemList = styled.ul` display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 1rem; padding: 0; list-style: none; @media (max-width: 750px) { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } `; export const Item = styled.li` overflow: hidden; position: relative; list-style: none; `; export const Button = styled.button` text-transform: uppercase; font-weight: 400; border: 1px solid ${selectedTheme.mainColor}; color: ${selectedTheme.mainColor}; background: none; min-height: 2rem; height: 100%; &:hover { cursor: pointer; } `; const StyledButton = styled.button` float: right; border: none; background: none; &:hover { cursor: pointer; } `; export const RefreshButton = styled(Button)` display: relative; top: 0; float: right; `; export const ErrorMessage = styled.p` color: red; `; interface IIconButtonProps { icon: string; onClick: any; } export const IconButton = ({ icon, onClick }: IIconButtonProps) => ( );