move selectors into player

This commit is contained in:
Kentai Radiquum 2025-04-08 01:04:21 +05:00
parent 13a3cc5ca5
commit 4c0345ffab
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 88 additions and 47 deletions

View file

@ -12,10 +12,10 @@ interface Source {
const DropdownTrigger = ({ name }: Source) => {
return (
<div className="flex items-center gap-1 cursor-pointer">
<span className="w-6 h-6 iconify material-symbols--motion-play"></span>
<p>{name}</p>
<span className="w-6 h-6 iconify material-symbols--arrow-drop-down"></span>
<div className="flex items-center gap-2 px-2 py-1 bg-black bg-opacity-75 rounded-lg cursor-pointer backdrop-blur-md">
<span className="w-6 h-6 text-white iconify material-symbols--motion-play"></span>
<p className="text-white">{name}</p>
<span className="w-6 h-6 -ml-2 text-white iconify material-symbols--arrow-drop-down"></span>
</div>
);
};