import React from "react"; import { SVGMedicine } from "../icons"; import Typography from "components/typography/Typography"; import { Button } from "components/Button/Button"; import classNames from "classnames"; import { useTranslation } from "react-i18next"; type Props = { count?: number; title: string; iconChild: Required; } & Omit, "">; function CategoryCard({ count, title, iconChild, className, ...props }: Props) { const [t, i18next] = useTranslation(); const iconChildStyle = "h-7 fill-gray-500 stroke-gray-500 group-focus:fill-blue-600 group-active:fill-blue-600 group-focus:stroke-blue-600 group-active:stroke-blue-600"; return (
); } export default CategoryCard;