feat: use classic/regular bookmark icon for To Read filter

- Change from solid bookmark to regular (outline) bookmark icon
- Matches classic FontAwesome bookmark style
This commit is contained in:
Gigi
2025-10-15 22:46:15 +02:00
parent d0b814e39d
commit 63f58e010f

View File

@@ -1,6 +1,7 @@
import React from 'react' import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faBookOpen, faBookmark, faCheckCircle, faAsterisk } from '@fortawesome/free-solid-svg-icons' import { faBookOpen, faCheckCircle, faAsterisk } from '@fortawesome/free-solid-svg-icons'
import { faBookmark } from '@fortawesome/free-regular-svg-icons'
import { faBooks } from '../icons/customIcons' import { faBooks } from '../icons/customIcons'
export type ArchiveFilterType = 'all' | 'to-read' | 'reading' | 'completed' | 'marked' export type ArchiveFilterType = 'all' | 'to-read' | 'reading' | 'completed' | 'marked'