4 lines
246 B
TypeScript
4 lines
246 B
TypeScript
|
import * as React from 'react';
|
||
|
declare const CloudIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
|
||
|
export default CloudIcon;
|