import { DownOutlined } from '@ant-design/icons'; import { createStyles } from 'antd-style'; import { FormattedMessage } from 'dumi'; import React from 'react'; import classnames from 'classnames'; import type { MenuProps } from 'antd'; import { Button, Dropdown } from 'antd'; import type { SharedProps } from './interface'; const useStyle = createStyles(({ css, token }) => ({ smallStyle: css` font-size: 12px; color: #777; margin-left: 0.3em; `, down: css` color: ${token.colorTextQuaternary}; `, downOutlined: css` font-size: 9px; margin: -1px 0 0 2px; vertical-align: middle; `, downOutlinedRTL: css` font-size: 9px; margin: -1px 2px 0 0; vertical-align: middle; `, })); const Community: React.FC = () => { const { styles } = useStyle(); return ( () ); }; export const getEcosystemGroup = (): MenuProps['items'] => [ { label: ( ), key: 'charts', }, { label: ( ), key: 'pro', }, { label: ( ), key: 'procomponents', }, { label: ( Ant Design of Angular ), key: 'ng', }, { label: ( Ant Design of Vue ), key: 'vue', }, ]; const More: React.FC = ({ isRTL }) => { const { styles } = useStyle(); return ( ); }; export default More;