13 lines
345 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
/// <reference types="react" />
import { RemoteIcon } 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;