@nexusui/branding
Version:
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.
29 lines (19 loc) • 653 B
Markdown
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.
Add the library as a dependency to your project:
```
yarn add @nexusui/branding
npm install --save @nexusui/branding
```
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}/>
```