UNPKG

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