support props for custom icons

This commit is contained in:
SrGooglo 2023-07-13 18:02:43 +00:00
parent 86abec01c7
commit 943fad8ad5

View File

@ -20,14 +20,17 @@ const marginedStyle = {
}
const customs = {
verifiedBadge: () => <VerifiedBadge
verifiedBadge: (props) => <VerifiedBadge
style={marginedStyle}
{...props}
/>,
VrChat: () => <VrChatIcon
VrChat: (props) => <VrChatIcon
style={marginedStyle}
{...props}
/>,
Crown: () => <Crown
Crown: (props) => <Crown
style={marginedStyle}
{...props}
/>
}