reactnativecomponents
Version:
React Native Components
15 lines (14 loc) • 377 B
TypeScript
import * as React from 'react';
import IconProps from './IconProps';
/**
* @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4
*/
export default class SvgIcon extends React.Component<IconProps> {
static defaultProps: {
width: number;
height: number;
viewBox: string;
};
getPathProps(path: any): any;
render(): JSX.Element;
}