diff options
author | Vendicated <vendicated@riseup.net> | 2023-01-14 23:00:29 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-01-14 23:01:19 +0100 |
commit | 7478e880a8920479f6a7026d90c3a1b93ddd8a70 (patch) | |
tree | 6517892348966ff75dff61fb37613c068dacb86f /src/components | |
parent | be7fa0cb3f7a30c604315d08f6bf3a4dc51c62a5 (diff) | |
download | Vencord-7478e880a8920479f6a7026d90c3a1b93ddd8a70.tar.gz Vencord-7478e880a8920479f6a7026d90c3a1b93ddd8a70.tar.bz2 Vencord-7478e880a8920479f6a7026d90c3a1b93ddd8a70.zip |
ShowHiddenChannels: Use Lock as ChannelIcon
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Badge.tsx (renamed from src/components/PluginSettings/components/BadgeComponent.tsx) | 4 | ||||
-rw-r--r-- | src/components/PluginSettings/components/index.ts | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/components/PluginSettings/components/BadgeComponent.tsx b/src/components/Badge.tsx index 6acf42a..0ed45ff 100644 --- a/src/components/PluginSettings/components/BadgeComponent.tsx +++ b/src/components/Badge.tsx @@ -22,6 +22,8 @@ export function Badge({ text, color }): JSX.Element { backgroundColor: color, justifySelf: "flex-end", marginLeft: "auto" - }}>{text}</div> + }}> + {text} + </div> ); } diff --git a/src/components/PluginSettings/components/index.ts b/src/components/PluginSettings/components/index.ts index 52745ea..d307b4e 100644 --- a/src/components/PluginSettings/components/index.ts +++ b/src/components/PluginSettings/components/index.ts @@ -30,7 +30,7 @@ export interface ISettingElementProps<T extends PluginOptionBase> { definedSettings?: DefinedSettings; } -export * from "./BadgeComponent"; +export * from "../../Badge"; export * from "./SettingBooleanComponent"; export * from "./SettingCustomComponent"; export * from "./SettingNumericComponent"; |