18 lines
556 B
TypeScript
Raw Normal View History

2021-04-19 20:27:12 +02:00
import * as React from "react";
import { RemoteIcon, RemoteIconInfo } from "tc-shared/file/Icons";
2021-02-20 18:55:36 +01:00
export declare const IconRenderer: (props: {
icon: string;
title?: string;
className?: string;
}) => JSX.Element;
export declare const RemoteIconRenderer: (props: {
2021-05-01 23:38:36 +02:00
icon: RemoteIcon | undefined;
2021-02-20 18:55:36 +01:00
className?: string;
title?: string;
}) => JSX.Element;
2021-04-19 20:27:12 +02:00
export declare const RemoteIconInfoRenderer: React.MemoExoticComponent<(props: {
2021-05-01 23:38:36 +02:00
icon: RemoteIconInfo | undefined;
2021-04-19 20:27:12 +02:00
className?: string;
title?: string;
}) => JSX.Element>;