mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
#591 - profile, users and projects
This commit is contained in:
14
resources/js/components/app-logo-icon-html.tsx
Normal file
14
resources/js/components/app-logo-icon-html.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
import { cn } from '@/lib/utils';
|
||||
|
||||
export default function AppLogoIconHtml({ className }: { className?: string }) {
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
'border-primary dark:bg-primary/60 from-primary to-primary/80 flex size-7 items-center justify-center rounded-md border bg-gradient-to-br font-bold text-white! shadow-xs dark:from-transparent dark:to-transparent',
|
||||
className,
|
||||
)}
|
||||
>
|
||||
V
|
||||
</div>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user