// Copyright 2023 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import type { LocalizerType } from '../types/Util'; import type { UsernameOnboardingActionableMegaphoneType } from '../types/Megaphone'; import { Button, ButtonSize, ButtonVariant } from './Button'; export type PropsType = { i18n: LocalizerType; } & Omit; export function UsernameMegaphone({ i18n, onLearnMore, onDismiss, }: PropsType): JSX.Element { return (

{i18n('icu:UsernameMegaphone__title')}

{i18n('icu:UsernameMegaphone__body')}

); }