import {html} from 'htm/preact'; import {Setting, SettingProps} from './index.js'; export function AnonymizeUsernamesSetting(props: SettingProps): TRXComponent { return html` <${Setting} ...${props}>

Anonymizes usernames by replacing them with "Anonymous #".
Note that User Labels and Username Colors will still be applied to any usernames as normal.

`; }