Add Popup Menu to Save Space in Sidebar (#260)

---------

Co-authored-by: Danny Avila <110412045+danny-avila@users.noreply.github.com>
This commit is contained in:
Anirudh 2023-05-14 21:12:17 +05:30 committed by GitHub
parent 542a46dc7c
commit 93dd1eb036
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 106 additions and 17 deletions

View file

@ -0,0 +1,34 @@
import React from 'react';
export default function DotsIcon() {
return (
<svg
stroke="currentColor"
fill="none"
stroke-width="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
className="h-4 w-4 flex-shrink-0 text-gray-500"
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="12"
cy="12"
r="1"
></circle>
<circle
cx="19"
cy="12"
r="1"
></circle>
<circle
cx="5"
cy="12"
r="1"
></circle>
</svg>
);
}