17 lines
618 B
TypeScript
17 lines
618 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 bg-sidebar-primary text-sidebar-primary-foreground">
|
||
|
|
<AppLogoIcon className="size-5 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 text-black">
|
||
|
|
{import.meta.env.VITE_APP_NAME}
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|