import * as React from 'react'; import type { MenuProps } from 'antd'; import { Button, Dropdown } from 'antd'; import { FormattedMessage } from 'dumi'; import { DownOutlined } from '@ant-design/icons'; import type { SharedProps } from './interface'; const smallStyle = { fontSize: 12, color: '#777', marginLeft: '0.3em' }; export function getEcosystemGroup(): Exclude { return [ { label: ( ), key: 'charts', }, { label: ( ), key: 'pro', }, { label: ( ), key: 'procomponents', }, { label: ( Ant Design of Angular ( ) ), key: 'ng', }, { label: ( Ant Design of Vue ( ) ), key: 'vue', }, ]; } export default (props: SharedProps) => { const downstyle = props.isRTL ? '-1px 2px 0 0' : '-1px 0 0 2px'; return ( ); };