import React from 'react'; import { Bot, Sparkles } from 'lucide-react'; interface AiSegmentationIconProps { size?: number; strokeWidth?: number; } export function AiSegmentationIcon({ size = 20, strokeWidth = 2 }: AiSegmentationIconProps) { const sparkleSize = Math.max(9, Math.round(size * 0.48)); return ( ); }