kv-tube/frontend/app/icons/HomeIcon.tsx
Khoa Vo 70266893dd 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

26 lines
No EOL
607 B
TypeScript

'use client';
interface IconProps {
size?: number;
className?: string;
style?: React.CSSProperties;
}
export default function HomeIcon({ 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}
>
<path
d="M10 20V14H14V20H19V10H21L12 3L3 10H5V20H10Z"
fill="currentColor"
/>
</svg>
);
}