import { styled } from '@mui/material'; import { Card } from 'component/common/Card/Card'; import { Link } from 'react-router-dom'; const StyledCardLink = styled(Link)(({ theme }) => ({ textDecoration: 'none', fontWeight: theme.typography.fontWeightBold, color: theme.palette.links, '&:hover, &:focus': { textDecoration: 'underline', }, })); const feedbackLink = 'https://docs.google.com/forms/d/1ElbScYxbAhFcjQWgRinifoymYHeuXzqIoQXfpUVYGR8/preview'; export const ReleasesFeedback: React.FC<{ title: string; children: React.ReactNode; }> = ({ title, children }: { title: string; children?: React.ReactNode }) => { return ( Give feedback } > {children} ); };