New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-browser-frame

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-browser-frame

Zhoozh up your mockups

latest
Source
npmnpm
Version
1.0.9
Version published
Maintainers
1
Created
Source

react-browser-frame

Zhoozh up your content with this responsive browser frame mockup.

Typescript-friendly.

Install

npm install react-browser-frame

or

yarn add react-browser-frame

Usage

Stick whatever you like inside a <BrowserFrame> and it will render as children props. The BrowserFrame component will be 100% as wide as its parent, and as high as the content you pass in to it.

Examples

An image

Image example

import React from "react";
import BrowserFrame from "react-browser-frame";

import myImg from "./img/doge.jpg";

export default () => (
  <BrowserFrame url="http://zombo.com">
    <img src={myImg} alt="A handsome doggo" />
  </BrowserFrame>
);

Text content

Text content example

export default () => (
  <BrowserFrame url="https://example.biz" padding="30px 20px">
    <p>It was the best of times, it was the blurst of times...</p>
  </BrowserFrame>
);

An iframe

Iframe example

const iframeSrc =
  "https://codepen.io/liamj/embed/preview/VdqgZK?height=500&amp;theme-id=39032&amp;default-tab=result";

export default () => (
  <BrowserFrame>
    <iframe
      width="100%"
      height="500px"
      scrolling="no"
      title="Breezy Windows logo"
      src={iframeSrc}
      frameBorder="no"
    />
  </BrowserFrame>
);

Props

<BrowserFrame> accepts the following props:

  • url (optional, string): Shows the address bar with your specified string.
  • padding (optional, string): Puts padding around your supplied content, as a CSS string, e.g. "20px" or "15px 30px" etc.
  • ???: What else would you like to see? Dark mode? Other styles n' props? Raise a PR or flick me a note :)

Styles partially copied from the browser mockup in Docusaurus v2 😅

License

MIT © liamjohnston

FAQs

Package last updated on 31 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts