UNPKG

@iobroker/adapter-react-v5

Version:

React components to develop ioBroker interfaces with react.

18 lines (17 loc) 409 B
import React from 'react'; import type { ThemeType } from '../../types'; interface LogoProps { themeType?: ThemeType; size?: number; /** Background color */ backgroundColor?: string; /** Background image URL */ backgroundImage?: string; } /** * Vendor specific loader * * @param props Properties */ export declare function LoaderMV(props: LogoProps): React.JSX.Element; export {};