1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 12:59:09 +00:00

eslint + flowtype fixes

This commit is contained in:
Szymon Lesisz 2018-10-31 12:51:35 +01:00 committed by Szymon Lesisz
parent 5fbd4a3291
commit 9215cb0fe8

View File

@ -1,7 +1,7 @@
/* @flow */
import * as React from 'react';
import styled, { css } from 'styled-components';
import styled from 'styled-components';
import PropTypes from 'prop-types';
import Icon from 'components/Icon';
import colors from 'config/colors';
@ -17,6 +17,7 @@ type Props = {
size: number;
};
onClick: () => void;
isLoading?: boolean;
children: React.Node;
};