### Installing React Letter Hologram
Source: https://github.com/nekzus/letter-hologram/blob/main/README.md
This command installs the @nekzus/react-letter-hologram package from npm, allowing you to use the Letter Hologram component in your React application.
```bash
npm install @nekzus/react-letter-hologram
```
--------------------------------
### Basic Letter Hologram Implementation
Source: https://github.com/nekzus/letter-hologram/blob/main/README.md
This example demonstrates the basic usage of the HoloBg component. It imports the component and renders "Hello World" within it, setting a width of 300px using a className.
```jsx
import React from "react";
import { HoloBg } from "@nekzus/react-letter-hologram";
const App = () => (
Hello World
);
export default App;
```
--------------------------------
### Letter Hologram with Custom Styling
Source: https://github.com/nekzus/letter-hologram/blob/main/README.md
This example showcases how to customize the appearance of the HoloBg component using className and style props. It sets the width, color, and border radius.
```jsx
import React from "react";
import { HoloBg } from "@nekzus/react-letter-hologram";
const App = () => (
Hello World
);
export default App;
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.