UNPKG

@devgateway/dvz-ui-react

Version:

A modular, embeddable React component library for data visualization and UI, built with TypeScript. Provides reusable components for charts, maps, dashboards, and more, with built-in support for internationalization and Redux integration.

14 lines (13 loc) 398 B
import { default as React } from 'react'; import { WrappedComponentProps } from 'react-intl'; export interface MenuChildProps extends WrappedComponentProps<"intl"> { menu?: any; locale?: string; match?: any; selected?: any; active?: any; showIcons?: boolean; onSetSelected?: any; } declare const InlineMenu: (props: any) => React.JSX.Element; export default InlineMenu;