AppLogo.tsx 571 B

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