7 lines
278 B
TypeScript
7 lines
278 B
TypeScript
import Image from "next/image";
|
|
import logo from "@/assets/brand/logo.png";
|
|
|
|
export function BrandIcon({ className = "h-4 w-4" }: { className?: string }) {
|
|
return <Image alt="" aria-hidden className={`shrink-0 rounded-sm ${className}`} height={16} src={logo} width={16} />;
|
|
}
|