UNPKG

203 BJavaScriptView Raw
1// @flow
2
3import * as React from 'react';
4import type {SvgProps} from 'react-native-svg';
5
6type Props = SvgProps;
7
8class Component extends React.Component<Props>{};
9
10export type Icon = typeof Component;