16 lines
656 B
TypeScript
16 lines
656 B
TypeScript
import AppLogoIcon from './app-logo-icon';
|
|
|
|
export default function AppLogo() {
|
|
return (
|
|
<>
|
|
<div className="bg-transparent text-sidebar-primary-foreground flex size-12 items-center justify-center rounded-md">
|
|
<AppLogoIcon className="w-full h-full 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-none font-semibold">SIM-RS</span>
|
|
<span className="truncate leading-none font-regular">RSAB Harapan Kita</span>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|