import type { Component } from 'solid-js' export interface SummaryCardProps { icon: string iconColor: string label: string value: number | string valueColor: string } const SummaryCard: Component = (props) => { return (

{props.value}

{props.label}

) } export default SummaryCard