feat: add resolution selection to settings

This commit is contained in:
Mert Uyanık
2025-10-29 09:45:02 +03:00
parent 78c699fcea
commit 002ec26b30
7 changed files with 306 additions and 15 deletions
+16
View File
@@ -165,6 +165,22 @@ export const SpeedIcon: React.FC<IconProps> = ({ size = 24, className = '', colo
</svg>
)
export const QualityIcon: React.FC<IconProps> = ({ size = 24, className = '', color = 'currentColor' }) => (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 12H8v-2H6v2H4.5V9H6v2h2V9h1.5v6zm9 0h-1.5v-2.25H15V15h-1.5V9H15v2.25h3.5V9H20v6z"
fill={color}
/>
</svg>
)
export const ForwardIcon: React.FC<IconProps> = ({ size = 24, className = '', color = 'currentColor' }) => (
<svg
width={size}