You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
466 B
17 lines
466 B
import { publicAssetUrl } from '@/constants' |
|
import { cn } from '@/lib/utils' |
|
|
|
/** Compact mark for narrow sidebar (from `public/favicon.png`). */ |
|
export default function Icon({ className }: { className?: string }) { |
|
return ( |
|
<img |
|
src={publicAssetUrl('favicon.png')} |
|
alt="" |
|
width={216} |
|
height={215} |
|
decoding="async" |
|
className={cn('mx-auto size-10 object-contain shrink-0', className)} |
|
role="presentation" |
|
/> |
|
) |
|
}
|
|
|