mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 22:16:15 +00:00
12 lines
239 B
TypeScript
12 lines
239 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 />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|