# NexusUI Branding

This package contains branding elements for NexusUI applications, including logos for each unique product line. These icons work the same as basic SVG icons in React.

## Installation

Add the library as a dependency to your project:

```
# With yarn
yarn add @nexusui/branding

# With npm
npm install --save @nexusui/branding
```

## Usage

In your typescript file, import the component(s) you want to use:

```tsx
// Replace ProductName with the specific logo you want to use
import { ProductName } from '@nexusui/branding';
// or
import ProductName from '@nexusui/branding/ProductName';

<ProductName height={24} width={24}/>
```
