Skip to content

Commit

Permalink
feat:added approved icons
Browse files Browse the repository at this point in the history
Signed-off-by: Moulika Kulkarni <[email protected]>
  • Loading branch information
MoulikaKulkarni committed Oct 31, 2023
1 parent e2f240d commit 9293a3f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/Ecosystem/EcosystemSidebarOption.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const EcosystemSidebarOption = () => {
>
<path
stroke="currentColor"
stroke-width=".8"
strokeWidth=".8"
d="M7.113 12.626c.043.953.182 1.857.402 2.684a8.156 8.156 0 0 0-1.095.552 6.745 6.745 0 0 1-1.175-3.236h1.868Zm4.265-7.306v2.96a10.972 10.972 0 0 1-2.292-.356c.578-1.405 1.41-2.314 2.292-2.605ZM7.905 7.514a7.017 7.017 0 0 1-.675-.334c.415-.411.884-.77 1.394-1.063a8.1 8.1 0 0 0-.72 1.397Zm.713 10.372a6.825 6.825 0 0 1-1.387-1.06c.21-.12.435-.23.672-.333.203.506.443.974.715 1.393ZM12.623 5.32c.881.291 1.714 1.2 2.291 2.605-.71.193-1.485.315-2.291.356V5.32ZM9.086 16.08c.71-.194 1.486-.315 2.292-.357v2.962c-.881-.292-1.714-1.201-2.292-2.606Zm7.008.413c.239.104.464.215.675.334-.415.411-.883.77-1.394 1.063a8.1 8.1 0 0 0 .72-1.397Zm-.709-10.371c.507.292.973.65 1.387 1.059-.21.12-.435.23-.672.333a8.053 8.053 0 0 0-.715-1.392Zm-2.762 12.563v-2.962c.806.041 1.58.163 2.291.356-.577 1.405-1.41 2.314-2.291 2.606ZM11.38 9.526v1.858H8.354c.041-.81.16-1.578.341-2.279.839.233 1.745.377 2.683.42Zm7.374 3.097a6.745 6.745 0 0 1-1.175 3.238 8.138 8.138 0 0 0-1.095-.553c.222-.828.36-1.732.402-2.685h1.868ZM11.38 14.48a12.26 12.26 0 0 0-2.684.421 11.41 11.41 0 0 1-.34-2.278h3.023v1.857Zm-6.131-3.096a6.745 6.745 0 0 1 1.174-3.238c.34.207.708.39 1.096.552a12.54 12.54 0 0 0-.402 2.686H5.249Zm7.374 3.096v-1.857h3.024a11.46 11.46 0 0 1-.341 2.278 12.198 12.198 0 0 0-2.683-.42Zm4.267-3.099a12.707 12.707 0 0 0-.403-2.684 8.16 8.16 0 0 0 1.095-.552 6.745 6.745 0 0 1 1.175 3.236H16.89Zm-4.267.003V9.526a12.196 12.196 0 0 0 2.683-.42c.182.7.3 1.469.34 2.278h-3.023Z"
/>
<path
Expand Down
18 changes: 9 additions & 9 deletions src/components/organization/users/Members.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,27 +192,27 @@ const Members = () => {
{!user.roles.includes(Roles.OWNER) &&
(userRoles.includes(Roles.OWNER) ||
userRoles.includes(Roles.ADMIN)) ? (
<p
<button
onClick={() => editUserRole(user)}
className="cursor-pointer mr-2 flex items-center text-sm font-medium text-gray-500 dark:text-gray-400"
>
<svg
className="h-5 w-6 mr-1 text-black dark:text-white"
viewBox="0 0 24 24"
stroke-width="2"
strokeWidth="2"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
strokeLinecap="round"
strokeLinejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" />
<path d="M9 7 h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" />
<path d="M9 15h3l8.5 -8.5a1.5 1.5 0 0 0 -3 -3l-8.5 8.5v3" />
<line x1="16" y1="5" x2="19" y2="8" />
</svg>{' '}
</p>
</svg>{''}
</button>
) : (
<p
<button
onClick={() => editUserRole(user)}
className="invisible cursor-pointer mr-2 flex items-center text-sm font-medium text-gray-500 dark:text-gray-400"
>
Expand All @@ -225,12 +225,12 @@ const Members = () => {
>
<path d="M17.414 2.586a2 2 0 00-2.828 0L7 10.172V13h2.828l7.586-7.586a2 2 0 000-2.828z"></path>
<path
fill-rule="evenodd"
fillRule="evenodd"
d="M2 6a2 2 0 012-2h4a1 1 0 010 2H4v10h10v-4a1 1 0 112 0v4a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"
clipRule="evenodd"
></path>
</svg>
</p>
</button>
)}
</div>
</li>
Expand Down

0 comments on commit 9293a3f

Please sign in to comment.