mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 14:06:15 +00:00
15 lines
439 B
TypeScript
15 lines
439 B
TypeScript
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>
|
|
);
|
|
}
|