mirror of
https://codeberg.org/uzu/strudel
synced 2026-08-03 14:01:56 -04:00
20 lines
455 B
React
20 lines
455 B
React
export function SidebarIcon() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="lucide lucide-panel-right-icon lucide-panel-right"
|
|
>
|
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
|
<path d="M15 3v18" />
|
|
</svg>
|
|
);
|
|
}
|