Display just the individual attributes #353
-
Hey, I'm using Micah avatars in my React Native app. Is there a way for me to display only the individual attributes without the entire model? For example, just the eyes without the rest of the face. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
HI @weronikazak Unfortunately, this is not possible for the avatar style "micah" at the moment. But I'll keep that in mind for the next major version. |
Beta Was this translation helpful? Give feedback.
-
I looked at it again and realized that my answer was wrong. It is already possible. Here are a few examples: HTTP-API
JS-Library import { createAvatar } from '@dicebear/core';
import * as micah from '@dicebear/micah';
const avatar = createAvatar(micah, {
base: [],
hair: [],
ears: [],
glassesProbability: 0,
backgroundColor: ["F9C9B6", "AC6651", "77311D"],
scale: 200,
translateX: -5,
translateY: 8,
seed: 'example'
}); |
Beta Was this translation helpful? Give feedback.
I looked at it again and realized that my answer was wrong. It is already possible. Here are a few examples:
HTTP-API
JS-Library