From 76d8482e5377c7cc4ee555cc74c028af9037a88d Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 16 Oct 2023 12:37:22 -0400 Subject: [PATCH] Update the invite button icon The design specs have changed to always use the outline variants of icons on buttons like this. --- src/button/InviteButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/button/InviteButton.tsx b/src/button/InviteButton.tsx index 45fb9776..b3d66295 100644 --- a/src/button/InviteButton.tsx +++ b/src/button/InviteButton.tsx @@ -17,14 +17,14 @@ limitations under the License. import { ComponentPropsWithoutRef, FC } from "react"; import { Button } from "@vector-im/compound-web"; import { useTranslation } from "react-i18next"; -import UserAddSolidIcon from "@vector-im/compound-design-tokens/icons/user-add-solid.svg?react"; +import UserAddIcon from "@vector-im/compound-design-tokens/icons/user-add.svg?react"; export const InviteButton: FC< Omit, "children"> > = (props) => { const { t } = useTranslation(); return ( - );