UNPKG

@nurl/panda-preset

Version:

Official Panda-CSS preset for the Ganglion Design System.

22 lines 460 B
// src/recipes/shared/helpers.ts function getSlotRecipePalettes(slots, palettes, initialValue) { return palettes.reduce( (acc, palette) => { acc[palette] = slots.reduce( (acc2, slot) => { acc2[slot] = { colorPalette: palette }; return acc2; }, {} ); return acc; }, initialValue ?? {} ); } export { getSlotRecipePalettes }; //# sourceMappingURL=helpers.js.map