MyCrypto/common/containers/Tabs/Swap/components/ShapeshiftBanner.tsx

13 lines
328 B
TypeScript

import React from 'react';
import './ShapeshiftBanner.scss';
import shapeshiftSvg from 'assets/images/logo-shapeshift.svg';
export default () => (
<div className="ShapeshiftBanner">
<p>
<b style={{ paddingRight: '8px' }}>New Feature: </b>Exchange coins & tokens
</p>
<img src={shapeshiftSvg} />
</div>
);