Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
Use PhosphorIcons for "add" icons
Browse files Browse the repository at this point in the history
Signed-off-by: Quentin Guidée <[email protected]>
  • Loading branch information
quentinguidee committed Feb 19, 2024
1 parent 8ae99ad commit b423478
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/apps/Auth/pages/Account/AccountEmails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function AccountEmails() {
<Button
variant="colored"
onClick={() => createEmail({ email })}
rightIcon={<MaterialIcon icon="add" />}
rightIcon={<Plus />}
>
Add
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Popup from "../../../components/Popup/Popup";
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import NoItems from "../../../components/NoItems/NoItems";
import Content from "../../../components/Content/Content";
import { ShareNetwork } from "@phosphor-icons/react";
import { Plus, ShareNetwork } from "@phosphor-icons/react";

export default function VertexReverseProxy() {
const queryClient = useQueryClient();
Expand Down Expand Up @@ -111,7 +111,7 @@ export default function VertexReverseProxy() {
<Button
variant="colored"
onClick={openNewRedirectPopup}
leftIcon={<MaterialIcon icon="add" />}
leftIcon={<Plus />}
>
Add redirection
</Button>
Expand Down
5 changes: 3 additions & 2 deletions src/components/ServiceInstallPopup/ServiceInstallPopup.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { APIError } from "../Error/APIError";
import { Button, MaterialIcon, Paragraph } from "@vertex-center/components";
import { Button, Paragraph } from "@vertex-center/components";
import Popup from "../Popup/Popup";
import { Template as ServiceModel } from "../../apps/Containers/backend/template";
import { Fragment, useState } from "react";
import { Plus } from "@phosphor-icons/react";

type Props = {
service: ServiceModel;
Expand Down Expand Up @@ -32,7 +33,7 @@ export default function ServiceInstallPopup(props: Readonly<Props>) {
<Button
variant="colored"
onClick={install}
rightIcon={<MaterialIcon icon="add" />}
rightIcon={<Plus />}
disabled={error !== undefined}
>
Create container
Expand Down

0 comments on commit b423478

Please sign in to comment.