mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-12 02:00:31 +08:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
import type { iSVG } from '@/types/svg';
|
||
|
import { svgs } from './svgs';
|
||
|
|
||
|
export const svgsData = svgs.map((svg: iSVG, index: number) => {
|
||
|
svg.id = index;
|
||
|
return svg;
|
||
|
});
|