TeaSpeak-Client/imports/shared-app/ui/react-elements/Icon.d.ts
2021-02-20 18:55:36 +01:00

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;