diff --git a/site/components/payment-streams/StreamsTable.js b/site/components/payment-streams/StreamsTable.js index 42d1b26..8738c5c 100644 --- a/site/components/payment-streams/StreamsTable.js +++ b/site/components/payment-streams/StreamsTable.js @@ -9,22 +9,10 @@ import { updateStreamInfo } from '../../utils/streams' import Button from '../../components/Button' import WithTooltip from '../../components/WithTooltip' import { EtherscanLink } from '../../components/EtherscanLink' +import SvgContainer from '../svg/SvgContainer' import PaymentStreamsLibContext from './PaymentStreamsLib' import TransactionsContext from '../context/Transactions' -const QuestionmarkIcon = () => ( - - - - -) - const StreamsTable = function () { const { active, account } = useWeb3React() const { t } = useTranslation('payment-streams') @@ -485,7 +473,9 @@ const StreamsTable = function () { width="w-28" > {t('claim')} - {canClaim(id) ? null : } + {canClaim(id) ? null : ( + + )} )} diff --git a/site/components/svg/Questionmark.js b/site/components/svg/Questionmark.js index 997b81b..334d4ea 100644 --- a/site/components/svg/Questionmark.js +++ b/site/components/svg/Questionmark.js @@ -1,8 +1,8 @@ import React from 'react' -const QuestionmarkIcon = props => ( +const QuestionmarkIcon = ({ fill = 'rgba(63, 200, 216)', ...props }) => (