import { FC, PropsWithChildren } from "react"; import { FlowerBackgroundIcon } from "@/icons/FlowerBackgroundIcon"; import styles from "./Count.module.css"; export const Count: FC = (props) => { const { children } = props; return (
{children}
); };