@dicebear/avataaars-neutral
Version:
Avatar style for DiceBear
43 lines (42 loc) • 2.13 kB
JavaScript
/**
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
*
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
* File: https://www.figma.com/file/HBLdITkkTnLs4M09BmCe4h
*/
import { getComponents } from './utils/getComponents.js';
import { getColors } from './utils/getColors.js';
export const meta = {
title: 'Avataaars',
creator: 'Pablo Stanley',
source: 'https://avataaars.com/',
homepage: 'https://twitter.com/pablostanley',
license: {
name: 'Free for personal and commercial use.',
url: 'https://avataaars.com/',
},
};
export const create = ({ prng, options }) => {
var _a, _b, _c, _d, _e, _f, _g, _h;
const components = getComponents({ prng, options });
const colors = getColors({ prng, options });
return {
attributes: {
viewBox: '0 0 112 112',
fill: 'none',
'shape-rendering': 'auto',
},
body: `<g transform="translate(2 63)">${(_b = (_a = components.mouth) === null || _a === void 0 ? void 0 : _a.value(components, colors)) !== null && _b !== void 0 ? _b : ''}</g><g transform="translate(28 51)">${(_d = (_c = components.nose) === null || _c === void 0 ? void 0 : _c.value(components, colors)) !== null && _d !== void 0 ? _d : ''}</g><g transform="translate(0 19)">${(_f = (_e = components.eyes) === null || _e === void 0 ? void 0 : _e.value(components, colors)) !== null && _f !== void 0 ? _f : ''}</g><g transform="translate(0 11)">${(_h = (_g = components.eyebrows) === null || _g === void 0 ? void 0 : _g.value(components, colors)) !== null && _h !== void 0 ? _h : ''}</g>`,
extra: () => ({
...Object.entries(components).reduce((acc, [key, value]) => {
acc[key] = value === null || value === void 0 ? void 0 : value.name;
return acc;
}, {}),
...Object.entries(colors).reduce((acc, [key, value]) => {
acc[`${key}Color`] = value;
return acc;
}, {}),
}),
};
};
export { schema } from './schema.js';