diff --git a/ui/components/PodCard.js b/ui/components/PodCard.js index 59986f0..a25d753 100644 --- a/ui/components/PodCard.js +++ b/ui/components/PodCard.js @@ -5,7 +5,7 @@ import styled from '@emotion/styled'; import { Link } from '@reach/router'; import PodStatus from './PodStatus'; import GridCard from './GridCard'; -import CardIcon from './Icon'; +import Icon from './Icon'; const PodTextContainer = styled.div` display: flex; @@ -27,7 +27,7 @@ const PodButtons = styled.div` display: flex; `; -const PodIcon = styled(CardIcon)` +const PodIcon = styled(Icon)` margin-left: 16px; `; diff --git a/ui/components/ServiceCard.js b/ui/components/ServiceCard.js index d79e721..e54909b 100644 --- a/ui/components/ServiceCard.js +++ b/ui/components/ServiceCard.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import styled from '@emotion/styled'; import GridCard from './GridCard'; -import CardIcon from './CardIcon'; +import Icon from './Icon'; import { Link } from '@reach/router'; const ServiceCardContainer = styled(GridCard)` @@ -38,7 +38,7 @@ const ServiceCard = ({ name, clusterIP, publicIP }) => ( {name} - ( > - + {clusterIP} {publicIP && ( - ( > - + )} {publicIP && {publicIP}}