---
// @design-system: icons/MDLogo/MDLogo
interface Props {
  size?: number;
  class?: string;
  outline?: boolean;
  title?: string;
}
const { size = 70, class: className, title = 'Multideal' } = Astro.props;
---

<img
  src="/brand/icon.png"
  srcset="/brand/icon.png 1x, /brand/icon@2x.png 2x"
  width={size}
  height={size}
  alt={title}
  decoding="async"
  class={className}
  style={`width:${size}px;height:${size}px`}
/>
