-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.ts
More file actions
17 lines (16 loc) · 944 Bytes
/
index.ts
File metadata and controls
17 lines (16 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { ItemInfo } from '@/common/components/gallery/components/model';
export const mockBasicShapesCollection: ItemInfo[] = [
{ thumbnailSrc: '/shapes/circle.svg', type: 'circle' },
{ thumbnailSrc: '/shapes/diamond.svg', type: 'diamond' },
{ thumbnailSrc: '/shapes/horizontalLine.svg', type: 'horizontalLine' },
{ thumbnailSrc: '/shapes/image.svg', type: 'image' },
{ thumbnailSrc: '/shapes/largeArrow.svg', type: 'largeArrow' },
{ thumbnailSrc: '/shapes/modalCover.svg', type: 'modalCover' },
{ thumbnailSrc: '/shapes/postit.svg', type: 'postit' },
{ thumbnailSrc: '/shapes/rectangle.svg', type: 'rectangle' },
{ thumbnailSrc: '/shapes/star.svg', type: 'star' },
{ thumbnailSrc: '/shapes/triangle.svg', type: 'triangle' },
{ thumbnailSrc: '/shapes/verticalLine.svg', type: 'verticalLine' },
{ thumbnailSrc: '/shapes/cilinder.svg', type: 'cilinder' },
{ thumbnailSrc: '/icons/cursor.svg', type: 'mouseCursor' },
];