1.0.2 • Published 4 years ago

@aiherrera/react-logo v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Logo Component for React

A simple & easy to use react Logo.

Installation

Requires React 16 or later

npm i --save @aiherrera/react-logo

# or

yarn add @aiherrera/react-logo

Demo

You can check all the configurations in Ai-CoderLab

Usage

{ Logo }

// ES5 syntax
const Logo = require('@aiherrera/react-logo')

// ES6 syntax
import Logo from '@aiherrera/react-logo'

Full example

import React from 'react'

import Logo from '@aiherrera/react-logo'
import logoSVG from './logoSVG.svg'

const App = () => {

  const width = 80
  const height = 80

  return <Logo logoSVG={logoSVG} width={width} height={height}/>

}

Props

All these props are passed as defaults and can be overriden any time.

NameTypeUnitDescriptionDefault
logoSVGstringN/ALogo image dir
widthnumberN/AWidth of the logo64
heightnumberN/AHeight of the logo64