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