3.0.0 • Published 4 years ago
@agderposten/logo v3.0.0
Logo
Component with black or white logo for the provided organization with an alt attribute set as the organization.name. Attempts to use Next.js getInitialProps.
Installation
npm install @agderposten/logoUsage
import React, {Fragment} from 'react';
import Logo, {stylesheet} from '@agderposten/logo';
export default () => (
<Fragment>
<Logo {...{organization}} />
<Logo {...{organization}} white />
<Logo {...{organization}} black />
<Logo {...{organization}} className="my-class" />
<Logo {...{organization}} width="30" />
<Logo {...{organization}} height="20" />
<style dangerouslySetInnerHTML={{__html: stylesheet}} />
</Fragment>
);