import React from 'react'; type Props = { className?: string; size?: number; color?: string; }; export default function InfoCircleIcon({ size = 16, className = 'text-[#A1AFBA]', color = '#9AC9E3' }: Props) { return (
); } InfoCircleIcon.defaultProps = { size: 20, className: 'text-[#777777]' };