import { Box } from "@mui/material"; import { Typography } from "../Atoms/Typography"; import CopyButton from "../Atoms/CopyButton"; interface GovernanceActionCardIdElementProps { title: string; id: string; dataTestId: string; } export default function GovernanceActionCardIdElement({ title, id, dataTestId, }: GovernanceActionCardIdElementProps) { return ( {title} {id} ); }