mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-11 17:50:32 +08:00
6 lines
173 B
TypeScript
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 };
|
|
}); |