MyCrypto/common/containers/Tabs/Swap/components/ShapeshiftBanner.tsx
William O'Beirne a58097eeaa Various Browser Quirk Fixes (#881)
* Fix large images in onboarding in safari.

* Fix shapeshift banner centering, adjusted spacing and logo.

* Fix jagged rates.

* Fix small password input on Firefox.

* Remove top and bottom padding on form inputs that would cause cut off text.

* Dont remove top and bottom padding on textareas.

* Prevent flickering from rerender of promos.
2018-01-22 14:44:13 -06:00

16 lines
414 B
TypeScript

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