import { ArrowIcon } from "@/components/shared/icons/ArrowIcon"; import styles from "./CardShared.module.css"; interface CardHeadingProps { title: string; subtitle?: string; titleClassName?: string; subtitleClassName?: string; wrapperClassName?: string; } export function CardHeading({ title, subtitle, titleClassName = "", subtitleClassName = "", wrapperClassName = "", }: CardHeadingProps) { return (