rm pal.icon

This commit is contained in:
Samuel Newman
2026-04-17 11:14:08 +03:00
parent 9ae02a1a6e
commit c52f034939
-4
View File
@@ -18,7 +18,6 @@ export interface UsePaletteValue {
textLight: TextStyle textLight: TextStyle
textInverted: TextStyle textInverted: TextStyle
link: TextStyle link: TextStyle
icon: TextStyle
} }
/** /**
@@ -57,9 +56,6 @@ export function usePalette(color: PaletteColorName): UsePaletteValue {
link: { link: {
color: palette.link, color: palette.link,
}, },
icon: {
color: palette.icon,
},
} }
}, [theme, color]) }, [theme, color])
} }