mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 05:45:22 +02:00
refactor(icons): replace fa icons [EE-4459] (#7907)
refactor(icons): remove fontawesome EE-4459 refactor(icon) replace feather with lucide EE-4472
This commit is contained in:
parent
9dfac98a26
commit
d78b762f7b
498 changed files with 2102 additions and 2817 deletions
|
@ -1,6 +1,6 @@
|
|||
import { useCurrentStateAndParams, useRouter } from '@uirouter/react';
|
||||
import { useEffect } from 'react';
|
||||
import { X, Slash } from 'react-feather';
|
||||
import { X, Slash } from 'lucide-react';
|
||||
import clsx from 'clsx';
|
||||
import angular from 'angular';
|
||||
|
||||
|
@ -15,6 +15,8 @@ import { useLocalStorage } from '@/react/hooks/useLocalStorage';
|
|||
import { EndpointProviderInterface } from '@/portainer/services/endpointProvider';
|
||||
import { isBE } from '@/react/portainer/feature-flags/feature-flags.service';
|
||||
|
||||
import { Icon } from '@@/Icon';
|
||||
|
||||
import { getPlatformIcon } from '../portainer/environments/utils/get-platform-icon';
|
||||
|
||||
import styles from './EnvironmentSidebar.module.css';
|
||||
|
@ -44,7 +46,7 @@ export function EnvironmentSidebar() {
|
|||
<SidebarSectionTitle>
|
||||
<div className="flex items-center gap-1">
|
||||
<span>Environment:</span>
|
||||
<Slash size="1em" className="text-xl text-gray-6" />
|
||||
<Icon icon={Slash} className="text-xl !text-gray-6" />
|
||||
<span className="text-gray-6 text-sm">None selected</span>
|
||||
</div>
|
||||
</SidebarSectionTitle>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue