UNPKG

@ogasphere/theme-manager

Version:

A reusable theme management package for Next.js and Vite applications

7 lines (6 loc) 253 B
export function validateThemeId(themeId, availableThemes) { return availableThemes.some((theme) => theme.id === themeId); } export function getThemeById(themeId, availableThemes) { return availableThemes.find((theme) => theme.id === themeId); }