add subtle web hover to "View full thread" (#6256)

This commit is contained in:
Samuel Newman
2024-11-12 17:49:49 +00:00
committed by GitHub
parent b60629aff8
commit df3f71286d
3 changed files with 29 additions and 7 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
export function SubtleWebHover({}: {hover: boolean}) {
import {ViewStyleProp} from '#/alf'
export function SubtleWebHover({}: ViewStyleProp & {hover: boolean}) {
return null
}