interface GuideScreenshotProps { src: string; alt: string; caption?: string; mobile?: boolean; } export const GuideScreenshot = ({ src, alt, caption, mobile }: GuideScreenshotProps) => { return (
{alt}
{caption && (
{caption}
)}
); };