🔧 Fixed svgs data.

This commit is contained in:
Pablo Hdez
2023-12-14 12:42:05 +00:00
parent 0184f1b027
commit 31989c1dfd
3 changed files with 9 additions and 291 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { iSVG } from '@/types/svg';
import { svgs } from './svgs';
export const svgsData = svgs.map((svg: iSVG, index: number) => {
svg.id = index;
return svg;
});