mirror of
https://github.com/nkanaev/yarr.git
synced 2026-07-15 11:06:31 +00:00
frontend: add icons module
This commit is contained in:
67
src/assets/javascripts/icons.ts
Normal file
67
src/assets/javascripts/icons.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
import anchor from '../graphicarts/anchor.svg' with { type: 'text' }
|
||||
import alertCircle from '../graphicarts/alert-circle.svg' with { type: 'text' }
|
||||
import assorted from '../graphicarts/assorted.svg' with { type: 'text' }
|
||||
import bookOpen from '../graphicarts/book-open.svg' with { type: 'text' }
|
||||
import check from '../graphicarts/check.svg' with { type: 'text' }
|
||||
import chevronDown from '../graphicarts/chevron-down.svg' with { type: 'text' }
|
||||
import chevronLeft from '../graphicarts/chevron-left.svg' with { type: 'text' }
|
||||
import chevronRight from '../graphicarts/chevron-right.svg' with { type: 'text' }
|
||||
import chevronUp from '../graphicarts/chevron-up.svg' with { type: 'text' }
|
||||
import circle from '../graphicarts/circle.svg' with { type: 'text' }
|
||||
import circleFull from '../graphicarts/circle-full.svg' with { type: 'text' }
|
||||
import download from '../graphicarts/download.svg' with { type: 'text' }
|
||||
import edit from '../graphicarts/edit.svg' with { type: 'text' }
|
||||
import externalLink from '../graphicarts/external-link.svg' with { type: 'text' }
|
||||
import folder from '../graphicarts/folder.svg' with { type: 'text' }
|
||||
import folderMinus from '../graphicarts/folder-minus.svg' with { type: 'text' }
|
||||
import folderPlus from '../graphicarts/folder-plus.svg' with { type: 'text' }
|
||||
import globe from '../graphicarts/globe.svg' with { type: 'text' }
|
||||
import helpCircle from '../graphicarts/help-circle.svg' with { type: 'text' }
|
||||
import layers from '../graphicarts/layers.svg' with { type: 'text' }
|
||||
import logOut from '../graphicarts/log-out.svg' with { type: 'text' }
|
||||
import moreHorizontal from '../graphicarts/more-horizontal.svg' with { type: 'text' }
|
||||
import plus from '../graphicarts/plus.svg' with { type: 'text' }
|
||||
import rotateCw from '../graphicarts/rotate-cw.svg' with { type: 'text' }
|
||||
import rss from '../graphicarts/rss.svg' with { type: 'text' }
|
||||
import search from '../graphicarts/search.svg' with { type: 'text' }
|
||||
import sliders from '../graphicarts/sliders.svg' with { type: 'text' }
|
||||
import star from '../graphicarts/star.svg' with { type: 'text' }
|
||||
import starFull from '../graphicarts/star-full.svg' with { type: 'text' }
|
||||
import trash from '../graphicarts/trash.svg' with { type: 'text' }
|
||||
import upload from '../graphicarts/upload.svg' with { type: 'text' }
|
||||
import x from '../graphicarts/x.svg' with { type: 'text' }
|
||||
|
||||
export default {
|
||||
anchor,
|
||||
'alert-circle': alertCircle,
|
||||
assorted,
|
||||
'book-open': bookOpen,
|
||||
check,
|
||||
'chevron-down': chevronDown,
|
||||
'chevron-left': chevronLeft,
|
||||
'chevron-right': chevronRight,
|
||||
'chevron-up': chevronUp,
|
||||
circle,
|
||||
'circle-full': circleFull,
|
||||
download,
|
||||
edit,
|
||||
'external-link': externalLink,
|
||||
folder,
|
||||
'folder-minus': folderMinus,
|
||||
'folder-plus': folderPlus,
|
||||
globe,
|
||||
'help-circle': helpCircle,
|
||||
layers,
|
||||
'log-out': logOut,
|
||||
'more-horizontal': moreHorizontal,
|
||||
plus,
|
||||
'rotate-cw': rotateCw,
|
||||
rss,
|
||||
search,
|
||||
sliders,
|
||||
star,
|
||||
'star-full': starFull,
|
||||
trash,
|
||||
upload,
|
||||
x,
|
||||
}
|
||||
Reference in New Issue
Block a user