kv-tube/frontend/app/icons/PlayIcon.tsx
Khoa Vo ad5b2d871a
Some checks failed
Build & Push Docker Image / build (push) Failing after 0s
feat: add watch page controls and custom KV-Tube branding
- Add fullscreen, loop, and wide mode toggles to watch page
- Add custom SVG icon components for consistent branding
- Update Header, Sidebar, and MobileNav with custom icons
- Add KV-Tube logo component with play button
- Create PWA icon SVGs for favicon and app icons
2026-05-14 10:59:21 +07:00

24 lines
No EOL
600 B
TypeScript

'use client';
interface IconProps {
size?: number;
className?: string;
style?: React.CSSProperties;
}
export default function PlayIcon({ size = 24, className, style }: IconProps) {
return (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
style={style}
>
<circle cx="12" cy="12" r="10" fill="#ff0000"/>
<path d="M9.5 7.5V16.5L17.5 12L9.5 7.5Z" fill="white"/>
</svg>
);
}