@mui/icons-material#MoveUp TypeScript Examples

The following examples show how to use @mui/icons-material#MoveUp. 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: adminMenu.tsx    From frontend with MIT License 6 votes vote down vote up
menuPayments = [
  { label: 'Плащания', icon: Payment, href: routes.admin.bankaccounts.index },
  { label: 'Дарения', icon: VolunteerActivismOutlinedIcon, href: routes.admin.donations.index },
  { label: 'Трезори', icon: Shield, href: routes.admin.vaults.index },
  { label: 'Тегления', icon: LocalAtmIcon, href: routes.admin.withdrawals.index },
  { label: 'Прехвърляния', icon: MoveUp, href: routes.admin.transfer.index },
  { label: 'Разходи', icon: Paid, href: routes.admin.expenses.index },
  {
    label: 'Повтарящо се дарение',
    icon: VolunteerActivism,
    href: routes.admin.recurringDonation.index,
  },
]
Example #2
Source File: adminMenu.tsx    From frontend with MIT License 6 votes vote down vote up
menuItems = [
  { label: 'Кампании', icon: AssignmentInd, href: routes.admin.campaigns.index },
  { label: 'Доброволци', icon: People, href: routes.admin.supporters },
  { label: 'Контакти', icon: ContactPhone, href: routes.admin.infoRequests },
  { label: 'Плащания', icon: Payment, href: routes.admin.bankaccounts.index },
  { label: 'Потребители', icon: Group, href: '#' },
  { label: 'Документи', icon: FolderShared, href: routes.admin.documents.index },
  { label: 'Бенефактори', icon: BeneficiaryIcon, href: routes.admin.benefactor.index },
  { label: 'Бенефициенти', icon: BeneficiaryIcon, href: routes.admin.beneficiary.index },
  { label: 'Типове кампании', icon: Class, href: routes.admin.campaignTypes.index },
  { label: 'Градове', icon: LocationCityRoundedIcon, href: routes.admin.cities.home },
  { label: 'Държави', icon: Public, href: routes.admin.countries.index },
  { label: 'Координатори', icon: People, href: routes.admin.coordinators.index },
  { label: 'Разходи', icon: Paid, href: routes.admin.expenses.index },
  { label: 'Дарения', icon: VolunteerActivismOutlinedIcon, href: routes.admin.donations.index },
  { label: 'Трезори', icon: Shield, href: routes.admin.vaults.index },
  { label: 'Тегления', icon: LocalAtmIcon, href: routes.admin.withdrawals.index },
  { label: 'Прехвърляния', icon: MoveUp, href: routes.admin.transfer.index },
  {
    label: 'Повтарящо се дарение',
    icon: VolunteerActivism,
    href: routes.admin.recurringDonation.index,
  },
  { label: 'Злоупотреби', icon: ReportGmailerrorredIcon, href: routes.admin.irregularity.index },
]