Files
portainer/app/react/components/Widget/WidgetIcon.tsx

12 lines
317 B
TypeScript

import { ReactNode } from 'react';
import { Icon } from '@@/Icon';
export function WidgetIcon({ icon }: { icon: ReactNode }) {
return (
<div className="inline-flex items-center rounded-full bg-blue-3 p-2 text-lg text-blue-8 th-dark:bg-gray-9 th-dark:text-blue-3">
<Icon icon={icon} />
</div>
);
}