2023-10-08 22:20:44 +00:00
|
|
|
import clsx from 'clsx';
|
|
|
|
|
2022-08-22 08:55:48 +00:00
|
|
|
import { Icon, IconProps } from '@@/Icon';
|
|
|
|
|
|
|
|
type Props = IconProps;
|
|
|
|
|
2023-10-08 22:20:44 +00:00
|
|
|
export function LogoIcon({ icon, iconClass }: Props) {
|
2022-08-22 08:55:48 +00:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={`
|
2023-02-12 21:04:24 +00:00
|
|
|
inline-flex h-14 w-14
|
2023-02-27 10:47:29 +00:00
|
|
|
items-center justify-center text-7xl
|
2022-08-22 08:55:48 +00:00
|
|
|
`}
|
|
|
|
>
|
2023-10-08 22:20:44 +00:00
|
|
|
<Icon icon={icon} className={clsx('!flex', iconClass)} />
|
2022-08-22 08:55:48 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|