From 4a9f626f01afad045361970f1210302a2e76bd88 Mon Sep 17 00:00:00 2001 From: mantikoros Date: Fri, 16 Sep 2022 11:37:42 -0500 Subject: [PATCH] group selector dialog --- web/components/buttons/pill-button.tsx | 6 +- .../onboarding/group-selector-dialog.tsx | 62 +++++++++++++++++++ web/components/onboarding/welcome.tsx | 40 +++++++----- 3 files changed, 90 insertions(+), 18 deletions(-) create mode 100644 web/components/onboarding/group-selector-dialog.tsx diff --git a/web/components/buttons/pill-button.tsx b/web/components/buttons/pill-button.tsx index 9aa6153f..12e15c24 100644 --- a/web/components/buttons/pill-button.tsx +++ b/web/components/buttons/pill-button.tsx @@ -6,9 +6,10 @@ export function PillButton(props: { onSelect: () => void color?: string xs?: boolean + className?: string children: ReactNode }) { - const { children, selected, onSelect, color, xs } = props + const { children, selected, onSelect, color, xs, className } = props return (