DocWeave / frontend /src /components /DocWeaveLogo.jsx
shak3008's picture
fix: replace PNG logo with SVG, fix workspace delete double-click, remove LFS
7acdf04
Raw
History Blame Contribute Delete
716 Bytes
/**
* DocWeave SVG logo — blue document icon with folded corner.
*/
export function DocWeaveLogo({ size = 42, className = "" }) {
return (
<svg
width={size}
height={size}
viewBox="0 0 48 48"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<rect x="4" y="4" width="40" height="40" rx="8" fill="#3b82f6" />
<path d="M30 4h14v14L30 4z" fill="#1d4ed8" opacity="0.6" />
<path
d="M14 18h20M14 24h16M14 30h12"
stroke="white"
strokeWidth="2.5"
strokeLinecap="round"
/>
</svg>
);
}