// Copyright 2023 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import type { LocalizerType } from '../types/Util'; import { Button } from './Button'; export type PropsType = Readonly<{ i18n: LocalizerType; onNext: () => void; }>; const CLASS = 'UsernameOnboardingModalBody'; const SUPPORT_URL = 'https://support.signal.org/hc/articles/5389476324250'; export function UsernameOnboardingModalBody({ i18n, onNext, }: PropsType): JSX.Element { return (