import React from 'react'; interface LivestormIconProps extends React.SVGProps { className?: string; size?: number; color?: string; } /** * Livestorm brand icon * Features 3 horizontal bars and a dot representing the Livestorm logo * Default color is 'currentColor' for easy styling */ /** @deprecated Use icons from icons-v2-generated instead. */ export function LivestormIcon({ className = '', size = 24, color = 'currentColor', ...props }: LivestormIconProps) { return ( {/* Top bar */} {/* Middle bar */} {/* Bottom bar */} {/* Dot */} ); }