react-icons/md#MdArrowDropDown TypeScript Examples

The following examples show how to use react-icons/md#MdArrowDropDown. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: VersionSwitcher.tsx    From website-docs with MIT License 5 votes vote down vote up
export function VersionSwitcher({ name, pathConfig, availIn }: Props) {
  const { t } = useI18next()

  return (
    <Dropdown className={dropdown} hoverable>
      <DropdownTrigger className={dropdownTrigger}>
        <Button className={button} fullwidth>
          <span>{renderVersion(pathConfig.version, pathConfig)}</span>
          <MdArrowDropDown />
        </Button>
      </DropdownTrigger>
      <DropdownMenu className={dropdownMenu}>
        <DropdownContent className={dropdownContent}>
          {AllVersion[pathConfig.repo][pathConfig.locale].map(
            (version, i, arr) => (
              <Fragment key={version}>
                {version && availIn.indexOf(version) === -1 ? (
                  <DropdownItem as="div">
                    <span
                      className={noExist}
                      data-tooltip={t('doc.notExist')}
                      data-flow="right">
                      {renderVersion(version, pathConfig)}
                    </span>
                  </DropdownItem>
                ) : (
                  <DropdownItem
                    // @ts-ignore
                    as={Link}
                    to={`/${pathConfig.repo}/${version}/${name}`}>
                    {renderVersion(version, pathConfig)}
                  </DropdownItem>
                )}
                {i < arr.length - 1 && <DropdownDivider />}
              </Fragment>
            )
          )}
        </DropdownContent>
      </DropdownMenu>
    </Dropdown>
  )
}