buckets/resources/js/components/AppLogo.tsx
myrmidex bfa92f8f24
All checks were successful
Build and Push Docker Image / build (push) Successful in 12m58s
Fix remaining kebab-case imports for case-sensitive filesystems
2026-03-19 01:53:27 +01:00

16 lines
606 B
TypeScript

import AppLogoIcon from './AppLogoIcon';
export default function AppLogo() {
return (
<>
<div className="flex aspect-square size-8 items-center justify-center rounded-md bg-sidebar-primary text-sidebar-primary-foreground">
<AppLogoIcon className="size-5 fill-current text-white dark:text-black" />
</div>
<div className="ml-1 grid flex-1 text-left text-sm">
<span className="mb-0.5 truncate leading-tight font-semibold">
Laravel Starter Kit
</span>
</div>
</>
);
}