import React from 'react'; interface YouTubeIconProps { color?: string; className?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function YouTubeIcon({ className , color = 'white' }: YouTubeIconProps) { return ( ); }