UNPKG

@iobroker/adapter-react-v5

Version:

React components to develop ioBroker interfaces with react.

16 lines (15 loc) 464 B
import React from 'react'; interface TabContainerProps { elevation?: number; overflow?: string; styles?: { root?: React.CSSProperties; container?: React.CSSProperties; }; onKeyDown?: (event: React.KeyboardEvent<HTMLDivElement>) => void; tabIndex?: number; /** The content of the component. */ children: React.ReactNode; } export declare function TabContainer(props: TabContainerProps): React.JSX.Element; export {};