UNPKG

@hackoregon/component-library

Version:

Official repo for Hack Oregon React component library

54 lines (49 loc) 1.62 kB
import React from "react"; import { storybookStyles } from "../storyStyles"; import Logo from "../../src/Logo/Logo"; const LogosStyle = () => ( <div style={storybookStyles.main}> <h1>Logos</h1> <h2>Quick Usage Guide</h2> <p> This quick usage guide should assist in using the appropriate logo version for most applications. Examples of each version in use follows. </p> <h3>Step 1: Select Orientation Type</h3> <p> Select the appropriate orientation and size for the space in which the logo will appear. </p> <h4>Wide</h4> <p>Standard go-to Logo.</p> <div style={storybookStyles.logo}> <Logo type="standardLogoAnimated" /> </div> <h4>Icon</h4> <p> Use only when standard “CIVIC” logo has already been used or in some primary brand content where “CIVIC” is already understood by the audience. </p> <div style={storybookStyles.logo}> <Logo type="squareLogo" /> </div> <h3>Step 2: Select Color Version</h3> <p> Select the appropriate color version for the background behind the logo. </p> <h4>Standard</h4> <p>Standard go-to Logo. Use on light solid-color backgrounds.</p> <div style={storybookStyles.logo}> <Logo type="standardLogo" /> </div> <h4>Inverted</h4> <p>Use on a dark, solid-color background.</p> <div style={storybookStyles.invertedLogo}> <Logo type="standardLogoInverted" /> </div> <div style={storybookStyles.invertedLogo}> <Logo type="squareLogoInverted" /> </div> </div> ); export default LogosStyle;