VideoQuest / src /app /interface /renderer /full-screen-button.tsx
jbilcke-hf's picture
jbilcke-hf HF Staff
new UI
fd2aa6b
raw
history blame contribute delete
481 Bytes
import { cn } from "@/lib/utils"
import { FullScreenIcon } from "../../../components/icons/full-screen"
export function FullScreenButton() {
return (
<div className={cn(
`absolute z-10 right-0 bottom-0`,
)}>
<div
className={cn(
`transform-all duration-200 text-white opacity-80 cursor-pointer scale-100`,
`hover:opacity-100 hover:text-white hover:scale-110 p-4`
)}>
<FullScreenIcon />
</div>
</div>
)
}