UNPKG

test-library-id

Version:

A nice greeter

10 lines (9 loc) 205 B
import * as React from 'react'; export interface IconProps { children: any; color?: string; size?: number; viewBox?: string; } declare const Icon: React.FC<IconProps>; export default Icon;