TeaSpeak-Client/imports/shared-app/ui/react-elements/Icon.d.ts

18 lines
556 B
TypeScript
Raw Normal View History

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