import type { SVGProps } from "react"; export interface VideoRecorderAltIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function VideoRecorderAltIcon({ className = "", size = 24, color = "currentColor", ...props }: VideoRecorderAltIconProps) { return ( ); }