13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
/// <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;
|