mirror of
https://github.com/portainer/portainer.git
synced 2026-06-23 04:20:11 +00:00
14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
import clsx from 'clsx';
|
|
|
|
import { Icon, IconProps } from '@@/Icon';
|
|
|
|
type Props = IconProps;
|
|
|
|
export function LogoIcon({ icon, iconClass }: Props) {
|
|
return (
|
|
<div className="inline-flex h-14 w-14 items-center justify-center text-7xl">
|
|
<Icon icon={icon} className={clsx('!flex', iconClass)} />
|
|
</div>
|
|
);
|
|
}
|