import React from 'react' import styled from 'styled-components' import Balance from 'components/Balance' import { Text } from '@pancakeswap/uikit' interface FlexProp { name?: string | number valueNum?: string | number } const ScoreItem = styled.div` width: 100%; ` const ItemText = styled(Text)` text-align: center; font-size: 36px; ` const ItemSubText = styled(Text)` text-align: center; font-size: 20px; ` const FlexItemCom: React.FC = ({ name, valueNum }) => { return ( {name} ) } export default FlexItemCom