UNPKG

@iobroker/adapter-react-v5

Version:

React components to develop ioBroker interfaces with react.

28 lines (27 loc) 697 B
/** * Copyright 2021-2024 ioBroker GmbH * * MIT License * */ import React from 'react'; import type { ThemeType, ThemeName } from '../../types'; interface LoaderPTProps { /** The size in pixels of this loader. */ size?: number; /** The chosen theme type. */ themeType?: ThemeType; /** The chosen theme name. */ themeName?: ThemeName; /** Background color */ backgroundColor?: string; /** Background image URL */ backgroundImage?: string; } /** * A loader component with the vendor-specific logo * * @param props Properties of the loader of type LoaderPTProps */ export declare function LoaderPT(props: LoaderPTProps): React.JSX.Element; export {};