import React from 'react' import { CommunityBubbleProps } from './CommunityBubble.props' import './CommunityBubble.css' import classNames from 'classnames' export const CommunityBubble = (props: CommunityBubbleProps) => { return (

{props.i18n?.title ?? 'Need Guidance?'} {props.i18n?.subtitle ?? 'ASK THE COMMUNITY'}

) }