### Install Svgl React Source: https://github.com/ridemountainpig/svgl-react/blob/main/docs/content/docs/index.mdx Install the Svgl React package using npm. This command fetches and installs the necessary dependencies for using Svgl React components in your project. ```bash npm i @ridemountainpig/svgl-react ``` -------------------------------- ### Basic Svgl React Component Usage Source: https://github.com/ridemountainpig/svgl-react/blob/main/docs/content/docs/index.mdx Demonstrates the basic usage of a Svgl React component. It shows how to import the `Svgl` component from the package and render it within a React functional component. ```tsx import { Svgl } from "@ridemountainpig/svgl-react"; export default function SvglReact() { return ; } ``` -------------------------------- ### Run Development Server (npm, pnpm, yarn) Source: https://github.com/ridemountainpig/svgl-react/blob/main/docs/README.md Commands to start the development server for the Next.js application. These commands are essential for local development and testing. ```bash npm run dev ``` ```bash pnpm dev ``` ```bash yarn dev ``` -------------------------------- ### Install Svgl React using npm, yarn, pnpm, or bun Source: https://github.com/ridemountainpig/svgl-react/blob/main/README.md This snippet shows the commands to install the Svgl React package using different popular JavaScript package managers: npm, yarn, pnpm, and bun. ```bash npm install @ridemountainpig/svgl-react # or yarn add @ridemountainpig/svgl-react # or pnpm add @ridemountainpig/svgl-react # or bun add @ridemountainpig/svgl-react ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.