import { FC, ReactNode } from 'react' import { Link } from 'react-router-dom' type Props = { title: string icon: ReactNode, color: string, count: number, description: string, to?: string } const ItemDashboard: FC = (props: Props) => { return (
{props.icon}
{props.title}
{props.count}
{props.description}
) } export default ItemDashboard