import React from 'react'; interface PodbeanIconProps extends React.SVGProps { className?: string; size?: number; color?: string; } /** * Podbean brand icon * Features a podcast/wifi wave pattern with 2 arcs and a center circle * Default color is 'currentColor' for easy styling */ /** @deprecated Use icons from icons-v2-generated instead. */ export function PodbeanIcon({ className = '', size = 24, color = 'currentColor', ...props }: PodbeanIconProps) { return ( {/* Outer arc - centered vertically */} {/* Inner arc */} {/* Center circle */} ); }