mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 18:26:23 +00:00
19 lines
778 B
TypeScript
19 lines
778 B
TypeScript
|
import { Forms, React } from "../../../webpack/common";
|
||
|
|
||
|
export default function PronounsAboutComponent() {
|
||
|
return (
|
||
|
<React.Fragment>
|
||
|
<Forms.FormTitle tag="h3">More Information</Forms.FormTitle>
|
||
|
<Forms.FormText>
|
||
|
The two pronoun formats are lowercase and capitalized. Example:
|
||
|
<ul>
|
||
|
<li>Lowercase: they/them</li>
|
||
|
<li>Capitalized: They/Them</li>
|
||
|
</ul>
|
||
|
Text like "Ask me my pronouns" or "Any pronouns" will always be capitalized. <br /><br />
|
||
|
You can also configure whether or not to display pronouns for the current user (since you probably already know them)
|
||
|
</Forms.FormText>
|
||
|
</React.Fragment>
|
||
|
);
|
||
|
}
|