> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kobble.io/llms.txt
> Use this file to discover all available pages before exploring further.

# <PricingLink />

The `<PricingLink />` component displays a link to the pricing page of your customer portal.

### Props

<ParamField path="children" type="ReactNode" required={true}>
  The content of the link.
</ParamField>

### Example

```tsx theme={null}
import { PricingLink } from "@kobbleio/next/client";

export default function MyComponent() {
    return (
        <PricingLink>
            <span class={'something'}>Go to pricing</span>
        </PricingLink>
    );
}
```
