18 lines
532 B
TypeScript
18 lines
532 B
TypeScript
import * as React from "react";
|
|
import { RemoteIcon, RemoteIconInfo } from "tc-shared/file/Icons";
|
|
export declare const IconRenderer: (props: {
|
|
icon: string;
|
|
title?: string;
|
|
className?: string;
|
|
}) => JSX.Element;
|
|
export declare const RemoteIconRenderer: (props: {
|
|
icon: RemoteIcon;
|
|
className?: string;
|
|
title?: string;
|
|
}) => JSX.Element;
|
|
export declare const RemoteIconInfoRenderer: React.MemoExoticComponent<(props: {
|
|
icon: RemoteIconInfo;
|
|
className?: string;
|
|
title?: string;
|
|
}) => JSX.Element>;
|