import { Modal } from 'web/components/layout/modal' import { Col } from 'web/components/layout/col' import { BETTING_STREAK_BONUS_AMOUNT, BETTING_STREAK_BONUS_MAX, } from 'common/economy' import { formatMoney } from 'common/util/format' export function BettingStreakModal(props: { isOpen: boolean setOpen: (open: boolean) => void }) { const { isOpen, setOpen } = props return ( 🔥 Daily betting streaks • What are they? You get {formatMoney(BETTING_STREAK_BONUS_AMOUNT)} more for each day of consecutive betting up to {formatMoney(BETTING_STREAK_BONUS_MAX)} . The more days you bet in a row, the more you earn! • Where can I check my streak? You can see your current streak on the top right of your profile page. ) }