import { styled, Typography } from '@mui/material'; import { formatAssetPath } from '../../../utils/formatPath'; import { FC } from 'react'; export const StyledFigure = styled('figure')(({ theme }) => ({ display: 'flex', gap: theme.spacing(2), flexDirection: 'column', })); export const StyledFigCaption = styled('figcaption')(({ theme }) => ({ display: 'flex', gap: theme.spacing(2), flexDirection: 'column', })); export const StyledImg = styled('img')({ maxWidth: '100%', maxHeight: '100%', width: 'auto', height: 'auto', }); interface JiraIntegrationProps { title: string; description: string; src: string; } export const JiraImageContainer: FC = ({ title, description, src, }) => { return ( {title} {description} ); };