import React from 'react'; import { motion } from 'framer-motion'; const AubixIcon: React.FC<{ size?: number; className?: string }> = ({ size = 100, className }) => { return ( {/* Robot Head / Helmet */} {/* Face Screen */} {/* Glowing Eyes */} {/* Tentacles (Techno-organic) */} {/* Chest Badge */} AUBM {/* Antenna/Sensors */} ); }; export default AubixIcon;