File size: 310 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
interface BrowserSnaphsotProps {
  src: string;
}

export function BrowserSnapshot({ src }: BrowserSnaphsotProps) {
  return (
    <img

      src={src}

      style={{ objectFit: "contain", width: "100%", height: "auto" }}

      className="rounded-xl"

      alt="Browser Screenshot"

    />
  );
}