🔨 Refactor icon system with Material Symbols and unified IconData#3740
Merged
guiyanakuang merged 5 commits intomainfrom Feb 6, 2026
Merged
🔨 Refactor icon system with Material Symbols and unified IconData#3740guiyanakuang merged 5 commits intomainfrom
guiyanakuang merged 5 commits intomainfrom
Conversation
- Add icons.material.symbols.rounded dependency - Create IconData class with predefined color palettes - Migrate PasteTypeExt to use IconData with Material Symbols - Simplify SVG icons (html, image, link, text) - Update Settings views to use new IconData system Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
Update icon colors to match Pencil design prototype: - pasteboard_listening: indigo → blue - paste_primary_type_only: indigo → amber - skip_pre_launch_pasteboard_content: indigo → purple - sound_effect: indigo → red - max_back_up_file_size: indigo → green Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
Replace androidx.compose.material.icons with com.composables.icons.materialsymbols across 57 files, completing the icon library migration to Material Symbols Rounded. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Delete 21 SVG drawable resources and their associated Painter-based components (PasteFileIcon, PasteHtmlIcon, PasteRtfIcon, PasteIcon, PasteTypeIconView, SettingsIcon, PasteTypeIconPainter, SingleFilePreviewView, SingleImagePreviewView) in favor of Material Symbols vector icons. Simplify BaseIcon and Buttons by removing Painter overloads now replaced by ImageVector equivalents. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #3739
Summary
Refactor the icon system to use Material Symbols instead of Material Icons, and introduce a unified IconData class for consistent icon styling across the app.
Changes
icons.material.symbols.roundeddependencyIconDataclass with predefined color palettes (Amber, Blue, Cyan, Green, Indigo, Purple, Red, Rose, Violet, Yellow)PasteTypeExtto useIconDatawith Material Symbols iconsTest plan
🤖 Generated with Claude Code