File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/components/downloaded Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { Input } from "@/components/ui/input"
88import { useAudioPlayerContext } from "@/contexts/audio-player-context-provider"
99import { controlIconClassName , inputResetIconClasses , thinIconStyle } from "@/lib/style"
1010import { Icon } from "@/components/ocodo-ui/icon"
11+ import { cn } from "@/lib/utils"
1112
1213const getFileType = ( fileName : string | undefined ) : 'video' | 'audio' | undefined => {
1314 if ( ! fileName ) return undefined
@@ -67,7 +68,7 @@ export const DownloadedUI: FC = () => {
6768 < div className = "absolute z-10 top-2 right-2" >
6869 < Icon
6970 Icon = { XIcon }
70- className = { controlIconClassName }
71+ className = { cn ( controlIconClassName , 'hover:bg-foreground/90 hover:text-background/80 transition-colors duration-800' ) }
7172 onClick = { ( ) => {
7273 setSelectedFile ( ( ) => {
7374 audioStop ( )
You can’t perform that action at this time.
0 commit comments