mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 14:29:40 +02:00
refactor(icons): remove fontawesome EE-4459 refactor(icon) replace feather with lucide EE-4472
16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
import { Icon, IconProps } from '@@/Icon';
|
|
|
|
type Props = IconProps;
|
|
|
|
export function LogoIcon({ icon }: Props) {
|
|
return (
|
|
<div
|
|
className={`
|
|
text-6xl h-14 w-14
|
|
inline-flex items-center justify-center
|
|
`}
|
|
>
|
|
<Icon icon={icon} className="!flex" />
|
|
</div>
|
|
);
|
|
}
|