import React from 'react'; import { AUTHENTIC_BLUE_900 } from '../colors'; interface Props { className?: string; color?: string; } export const InfoCircleSolidIcon: React.FC = ({ color = AUTHENTIC_BLUE_900, ...props }) => { return ( ); };