1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-01 04:12:40 +00:00
trezor-wallet/src/components/modals/confirm/Action/index.js
2018-11-05 17:54:07 +01:00

21 lines
381 B
JavaScript

/* @flow */
import React from 'react';
import styled from 'styled-components';
import { H3 } from 'components/Heading';
const Wrapper = styled.div``;
const Header = styled.div`
padding: 48px;
`;
const ConfirmAction = () => (
<Wrapper>
<Header>
<H3>Confirm Action on your Trezor</H3>
</Header>
</Wrapper>
);
export default ConfirmAction;