import React from 'react'; import { Box, Flex } from '../../../Layout'; export const StickIndicator = ({ total, index }: { total: number; index: number }) => { const sticksCount = Math.min(3, total); if (total < 2) { return null; } return ( {[...Array(sticksCount)].map((_, i) => ( ))} ); };