Bump deps (#340)

* Bump deps

* Adjust for new eslint parser
This commit is contained in:
Jaco Greeff
2020-07-02 08:01:50 +02:00
committed by GitHub
parent c8f4983946
commit 4c58f48645
25 changed files with 1084 additions and 1051 deletions
@@ -3,17 +3,13 @@
// of the Apache-2.0 license. See the LICENSE file for details.
import { Circle as CircleType } from '@polkadot/ui-shared/icons/types';
import { Props as BaseProps } from '../types';
import { Props } from '../types';
import React from 'react';
import { View } from 'react-native';
import Svg, { Circle as SvgCircle } from 'react-native-svg';
import { polkadotIcon } from '@polkadot/ui-shared';
interface Props extends BaseProps {
isAlternative?: boolean;
}
function renderCircle ({ cx, cy, fill, r }: CircleType, key: number): React.ReactNode {
return (
<SvgCircle
@@ -4,6 +4,7 @@
export interface Props {
address: string;
isAlternative?: boolean;
publicKey: string;
size: number;
}