@iobroker/adapter-react-v5
Version:
React components to develop ioBroker interfaces with react.
22 lines (21 loc) • 597 B
TypeScript
import React from 'react';
import type { ThemeType } from '../types';
interface TextWithIconProps {
lang: ioBroker.Languages;
themeType?: ThemeType;
value: string | Record<string, any>;
list?: ioBroker.Object[] | Record<string, ioBroker.Object>;
className?: string;
style?: React.CSSProperties;
title?: string;
removePrefix?: string;
moreClasses?: {
root?: string;
icon?: string;
text?: string;
};
icon?: string;
color?: string;
}
export declare function TextWithIcon(props: TextWithIconProps): React.JSX.Element;
export {};