import React from 'react'; type ImgIconParams = { url: string; size: string|number; style?: any; }; export default function ImgIcon(inprops: ImgIconParams) { const {url, size, style, ...props} = inprops; return }