feat: add web icons (#70)

* feat: add web icons

* chore: adjust icon color

* chore: remove medium variant

* chore: replace chevron arrows

* chore: replace slash menu icons

* chore: configure icon size using mui theme override

* chore: replace toolbar icons

* chore: replace editor block icons

* chore: fix space item hover glitch

* chore: clean up with newly added icons

* chore: newly-export icons

* chore: adjust view and space icons

* chore: clean up some additional icons

* chore: add more icons

* fix: recent views on mobile not showing icon

* chore: rename usage of icon

* last batch

* chore: replace publish icons

* chore: new restore icon and use original link arrow svg

* chore: replace more icons

* fix: more icon alignment

* chore: remove existing

* chore: re-add missing icons

* fix: missing icons and misspelling

* fix: wrong icons and links

* fix: lightbulb svg
This commit is contained in:
Richard Shiue
2025-04-02 19:01:26 +08:00
committed by GitHub
parent e0c96166b6
commit b938aedef2
546 changed files with 3325 additions and 4131 deletions

View File

@@ -1,7 +1,7 @@
import { ViewLayout } from '@/application/types';
import { ReactComponent as DuplicateIcon } from '@/assets/duplicate.svg';
import { ReactComponent as MoveToIcon } from '@/assets/move_to.svg';
import { ReactComponent as DeleteIcon } from '@/assets/trash.svg';
import { ReactComponent as DuplicateIcon } from '@/assets/icons/duplicate.svg';
import { ReactComponent as MoveToIcon } from '@/assets/icons/move_to.svg';
import { ReactComponent as DeleteIcon } from '@/assets/icons/delete.svg';
import { notify } from '@/components/_shared/notify';
import { Origins } from '@/components/_shared/popover';
import { useAppHandlers, useAppView, useCurrentWorkspaceId } from '@/components/app/app.hooks';