import React from 'react' import { useTheme } from '../themeContext' import { colors } from '../theme' export interface BgCircleProps { circleColor: keyof typeof colors.bgColors } export const BgCircle = ({ circleColor }: BgCircleProps) => { const { colors } = useTheme() const color = colors.bgColors[circleColor] return }