From cb0066aac9c4c7e5f43acb72d53385aa36b329f3 Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 15 Oct 2025 14:31:27 +0200 Subject: [PATCH] style(bookmarks): use file-lines icon instead of book for default bookmarks --- src/components/BookmarkItem.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/BookmarkItem.tsx b/src/components/BookmarkItem.tsx index 17a9310f..d8ff642d 100644 --- a/src/components/BookmarkItem.tsx +++ b/src/components/BookmarkItem.tsx @@ -1,6 +1,6 @@ import React, { useState } from 'react' -import { faNewspaper, faStickyNote, faCirclePlay, faCamera } from '@fortawesome/free-regular-svg-icons' -import { faBook, faGlobe } from '@fortawesome/free-solid-svg-icons' +import { faNewspaper, faStickyNote, faCirclePlay, faCamera, faFileLines } from '@fortawesome/free-regular-svg-icons' +import { faGlobe } from '@fortawesome/free-solid-svg-icons' import { IconDefinition } from '@fortawesome/fontawesome-svg-core' import { useEventModel } from 'applesauce-react/hooks' import { Models } from 'applesauce-core' @@ -89,7 +89,7 @@ export const BookmarkItem: React.FC = ({ bookmark, index, onS if (!hasUrls) return faStickyNote // Just a text note if (firstUrlClassification?.type === 'youtube' || firstUrlClassification?.type === 'video') return faCirclePlay - return faBook + return faFileLines } const getIconForUrlType = (url: string) => { @@ -101,7 +101,7 @@ export const BookmarkItem: React.FC = ({ bookmark, index, onS case 'image': return faCamera default: - return faBook + return faFileLines } }