svgl/src/data/index.ts

7 lines
177 B
TypeScript
Raw Normal View History

2023-12-14 12:42:05 +00:00
import type { iSVG } from '@/types/svg';
import { svgs } from './svgs';
export const svgsData = svgs.map((svg: iSVG, index: number) => {
svg.id = index;
return svg;
});