ShowHiddenChannels: Use Lock as ChannelIcon

This commit is contained in:
Vendicated 2023-01-14 23:00:29 +01:00
parent be7fa0cb3f
commit 7478e880a8
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
3 changed files with 31 additions and 15 deletions

View file

@ -22,6 +22,8 @@ export function Badge({ text, color }): JSX.Element {
backgroundColor: color,
justifySelf: "flex-end",
marginLeft: "auto"
}}>{text}</div>
}}>
{text}
</div>
);
}

View file

@ -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";