Lightspeed Logo component
npm install @lightspeed/cirrus-ls-logoLightspeed Logo component.
First, make sure you have been through the install steps steps required to add Flame in your application. Although it's not required to have Flame installed to use Logo, you will need to install its peer dependencies.
If using Yarn:
``sh`
yarn add @lightspeed/cirrus-ls-logo
Or using npm:
`sh`
npm i -S @lightspeed/cirrus-ls-logo
#### Props
| Prop | Type | Description |
| ------- | ------------------------------------------------------ | ------------------------------------------------- |
| width | string | Logo width, height will be proportional on type |type
| | oneOf([horizontal, flame, vertical]) | Logo type, default is horizontal |color
| | oneOf([red-white, maple, dive, night, snow]) | Optional color variants |
#### Example
`tsx
import * as React from 'react';
import { Logo } from '@lightspeed/cirrus-ls-logo';
const MyComponent: React.FC = () => (
export default MyComponent;
``