Update icon and label of reactions button

They've been updated in the designs.
This commit is contained in:
Robin 2024-11-19 09:56:46 -05:00
parent 90fe8e0529
commit 2ee468ba44
2 changed files with 4 additions and 5 deletions

View File

@ -12,7 +12,6 @@
"no": "No", "no": "No",
"pick_reaction": "Pick reaction", "pick_reaction": "Pick reaction",
"raise_hand": "Raise hand", "raise_hand": "Raise hand",
"raise_hand_or_send_reaction": "Raise hand or send reaction",
"register": "Register", "register": "Register",
"remove": "Remove", "remove": "Remove",
"show_less": "Show less", "show_less": "Show less",
@ -62,6 +61,7 @@
"preferences": "Preferences", "preferences": "Preferences",
"profile": "Profile", "profile": "Profile",
"reaction": "Reaction", "reaction": "Reaction",
"reactions": "Reactions",
"settings": "Settings", "settings": "Settings",
"something_went_wrong": "Something went wrong", "something_went_wrong": "Something went wrong",
"unencrypted": "Not encrypted", "unencrypted": "Not encrypted",

View File

@ -8,9 +8,9 @@ Please see LICENSE in the repository root for full details.
import { Button as CpdButton, Tooltip, Alert } from "@vector-im/compound-web"; import { Button as CpdButton, Tooltip, Alert } from "@vector-im/compound-web";
import { import {
RaisedHandSolidIcon, RaisedHandSolidIcon,
ReactionIcon,
ChevronDownIcon, ChevronDownIcon,
ChevronUpIcon, ChevronUpIcon,
ReactionSolidIcon,
} from "@vector-im/compound-design-tokens/assets/web/icons"; } from "@vector-im/compound-design-tokens/assets/web/icons";
import { import {
ComponentPropsWithoutRef, ComponentPropsWithoutRef,
@ -47,15 +47,14 @@ const InnerButton: FC<InnerButtonProps> = ({ raised, open, ...props }) => {
const { t } = useTranslation(); const { t } = useTranslation();
return ( return (
<Tooltip label={t("action.raise_hand_or_send_reaction")}> <Tooltip label={t("common.reactions")}>
<CpdButton <CpdButton
className={classNames(raised && styles.raisedButton)} className={classNames(raised && styles.raisedButton)}
aria-expanded={open} aria-expanded={open}
aria-haspopup aria-haspopup
aria-label={t("action.raise_hand_or_send_reaction")}
kind={raised || open ? "primary" : "secondary"} kind={raised || open ? "primary" : "secondary"}
iconOnly iconOnly
Icon={raised ? RaisedHandSolidIcon : ReactionIcon} Icon={raised ? RaisedHandSolidIcon : ReactionSolidIcon}
{...props} {...props}
/> />
</Tooltip> </Tooltip>