import React from 'react'; import styled from 'styled-components'; import Card from '../../../components/Card'; interface StatProps { icon: string; title: string; description: string; } const Stat: React.FC = ({ icon, title, description }) => { return ( {icon} {title} {description} ); }; const StyledCardTitle = styled.div` font-size: 18px; font-weight: 700; `; const StyledDesc = styled.span` color: ${(props) => props.theme.color.grey[400]}; `; const StyledIcon = styled.span` font-size: 28px; margin-right: 10px; `; const StyledTextWrapper = styled.span` display: flex; flex-direction: column; `; const StyledCardContentInner = styled.div` height: 100%; display: flex; align-items: center; flex-direction: row; padding: ${(props) => props.theme.spacing[2]}px ${(props) => props.theme.spacing[4]}px; `; export default Stat;