- 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
26 lines
No EOL
607 B
TypeScript
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>
|
|
);
|
|
} |