import { FC } from "react"; import Link from "next/link"; import { Button, Stack, Text } from "@mantine/core"; import ThemeIcon from "@/components/ui/ThemeIcon/ThemeIcon"; import LinkData from "@/types/LinkData"; import styles from "./Action.module.css"; type Props = { linkData: LinkData; }; const Action: FC = ({ linkData }) => { return ( ); }; export default Action;