Jon/sky 5841 make debug view the default view (#3208)

This commit is contained in:
Jonathan Dobson
2025-08-15 20:32:55 -04:00
committed by GitHub
parent fc55729257
commit 618fba5371
33 changed files with 237 additions and 159 deletions

View File

@@ -0,0 +1,28 @@
type Props = {
className?: string;
};
function BrowserIcon({ className }: Props) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 24 24"
fill="none"
className={className}
>
<path
stroke="currentColor"
d="M3 10V18C3 19.1046 3.89543 20 5 20H19C20.1046 20 21 19.1046 21 18V10M3 10V6C3 4.89543 3.89543 4 5 4H19C20.1046 4 21 4.89543 21 6V10M3 10H21"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<circle cx="6" cy="7" r="1" fill="currentColor" />
<circle cx="9" cy="7" r="1" fill="currentColor" />
</svg>
);
}
export { BrowserIcon };