Update compound-web to 9.3.0 and update Buttons from "sm" to "md".

This commit is contained in:
Half-Shot
2026-04-27 10:53:30 +01:00
parent 2ce6098085
commit 85df3d91ad
6 changed files with 12 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ export const InviteButton: FC<
> = (props) => {
const { t } = useTranslation();
return (
<Button kind="secondary" size="sm" Icon={UserAddIcon} {...props}>
<Button kind="secondary" size="md" Icon={UserAddIcon} {...props}>
{t("action.invite")}
</Button>
);