svgl/src/data/index.ts
2023-12-16 22:35:25 +00:00

6 lines
173 B
TypeScript

import type { iSVG } from '@/types/svg';
import { svgs } from './svgs';
export const svgsData = svgs.map((svg: iSVG, index: number) => {
return { id: index, ...svg };
});