mirror of
https://github.com/vitodeploy/vito.git
synced 2025-05-14 03:53:35 +00:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import AppLogoIcon from './app-logo-icon';
|
|
|
|
export default function AppLogo() {
|
|
return (
|
|
<>
|
|
<div className="flex aspect-square size-8 items-center justify-center rounded-md">
|
|
<AppLogoIcon className="size-7 rounded-sm fill-current text-white dark:text-black" />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|