diff --git a/packages/app/src/components/Icons/index.jsx b/packages/app/src/components/Icons/index.jsx
index 6628c905..ad5e239c 100755
--- a/packages/app/src/components/Icons/index.jsx
+++ b/packages/app/src/components/Icons/index.jsx
@@ -4,6 +4,7 @@ import VrChatIcon from "./customIcons/vrchat"
import VerifiedBadge from "./customIcons/verifiedBadge"
import Crown from "./customIcons/crown"
import Lossless from "./customIcons/lossless"
+import Ogg from "./customIcons/ogg"
// import icons lib
import * as lib1 from "react-icons/fi"
@@ -15,52 +16,43 @@ import * as lib6 from "react-icons/fa"
import * as lib7 from "react-icons/tb"
const marginedStyle = {
- width: "1em",
- height: "1em",
- marginRight: "10px",
- verticalAlign: "-0.125em"
+ width: "1em",
+ height: "1em",
+ marginRight: "10px",
+ verticalAlign: "-0.125em",
}
const customs = {
- Lossless: (props) => ,
- verifiedBadge: (props) => ,
- VrChat: (props) => ,
- Crown: (props) =>
+ Lossless: (props) => ,
+ verifiedBadge: (props) => (
+
+ ),
+ VrChat: (props) => ,
+ Crown: (props) => ,
+ Ogg: (props) => ,
}
export const Icons = {
- ...customs,
- ...lib1,
- ...lib2,
- ...lib3,
- ...lib4,
- ...lib5,
- ...lib6,
- ...lib7,
+ ...customs,
+ ...lib1,
+ ...lib2,
+ ...lib3,
+ ...lib4,
+ ...lib5,
+ ...lib6,
+ ...lib7,
}
export function createIconRender(icon, props) {
- if (React.isValidElement(icon)) {
- return icon
- }
+ if (React.isValidElement(icon)) {
+ return icon
+ }
- if (typeof Icons[icon] !== "undefined") {
- return React.createElement(Icons[icon], props)
- }
+ if (typeof Icons[icon] !== "undefined") {
+ return React.createElement(Icons[icon], props)
+ }
- return null
+ return null
}
-export default Icons
\ No newline at end of file
+export default Icons