import * as React from 'react'; type Props = { className?: string; } const InfoCircle = ({className = ''} : Props) => ( ); export default InfoCircle;