From b7083421e580fb7492a7d61993a7f53c4c11086d Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Fri, 16 Feb 2024 19:02:31 -0800 Subject: [PATCH] Added icon to teams button. --- src/components/input/TeamsButton.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/input/TeamsButton.tsx b/src/components/input/TeamsButton.tsx index 8dc01ba7..052ad875 100644 --- a/src/components/input/TeamsButton.tsx +++ b/src/components/input/TeamsButton.tsx @@ -7,9 +7,11 @@ import styles from './TeamsButton.module.css'; export function TeamsButton({ teamId, + className, onChange, }: { teamId: string; + className?: string; onChange?: (value: string) => void; }) { const { user } = useLogin(); @@ -28,9 +30,12 @@ export function TeamsButton({ return ( - {(close: () => void) => (