UNPKG

@iobroker/adapter-react-v5

Version:

React components to develop ioBroker interfaces with react.

23 lines (22 loc) 583 B
/** * Copyright 2021-2024 ioBroker GmbH * * MIT License * */ import React from 'react'; import type { ThemeType, ThemeName } from '../../types'; interface LoaderVendorProps { /** 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; } export declare function LoaderVendor(props: LoaderVendorProps): React.JSX.Element; export {};