import React from 'react'; import is from 'styled-is'; import remcalc from 'remcalc'; import styled from 'styled-components'; import { default as Label } from '../label'; import { Actions, Arrow, Bin, Checkcircle, Chevron, Close, DataCenter, Health, Import, Instances, Loading, Minus, Plus, Triton, User } from './'; const List = styled.ul` display: flex; list-style: none; padding: 0; flex-wrap: wrap; `; const Icon = styled.div` width: ${remcalc(180)}; height: ${remcalc(180)}; border: ${remcalc(2)} solid ${props => props.theme.grey}; align-items: center; justify-content: center; display: flex; margin-bottom: ${remcalc(18)}; ${is('dark')` background: ${props => props.theme.secondary}; `}; `; const ListItem = styled.li` display: flex; align-items: center; justify-content: center; margin: ${remcalc(8)}; flex-direction: column; margin-bottom: ${remcalc(53)}; `; const Icons = () => ( ); export default Icons;