mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 02:16:23 +00:00
Refactor HelpIcon component and update className usage
This commit is contained in:
parent
85a457a456
commit
af8649223b
1 changed files with 2 additions and 1 deletions
|
@ -5,11 +5,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { classes } from "@utils/misc";
|
import { classes } from "@utils/misc";
|
||||||
|
|
||||||
export default ({ className }: { className?: string; }): JSX.Element => (
|
export default ({ className }: { className?: string; }): JSX.Element => (
|
||||||
<svg
|
<svg
|
||||||
x="0"
|
x="0"
|
||||||
y="0"
|
y="0"
|
||||||
className="vc-holynotes-icon"
|
className={classes("vc-holynotes-icon")}
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
role="img"
|
role="img"
|
||||||
width="24"
|
width="24"
|
||||||
|
|
Loading…
Reference in a new issue