import React from 'react'; interface IProp { size?: number; className?: string; color?: string; colorCenter?: string; } const DAOIcon: React.FC = ({ size = 24, className, color = 'white', colorCenter = '#A1AFBA' }) => { return ( ); }; export default DAOIcon;