You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/components/modals/confirm/Action/index.js

24 lines
499 B

/* @flow */
import React from 'react';
import styled from 'styled-components';
import { H3 } from 'components/Heading';
6 years ago
import ICONS from 'config/icons';
import Icon from 'components/Icon';
const Wrapper = styled.div``;
const Header = styled.div`
padding: 48px;
`;
const ConfirmAction = () => (
<Wrapper>
<Header>
6 years ago
<Icon icon={ICONS.T1} size={100} />
6 years ago
<H3>Confirm action on your Trezor</H3>
</Header>
</Wrapper>
);
export default ConfirmAction;