Credits
You can customize the chart credits using the Credits component:
import { Chart, Series, Credits } from "@highcharts/react";export default function CreditsChart() {return (<Chart><Credits href="https://www.highcharts.com">Credits text</Credits><Series data={[3, 4, 1, 5, 2]} /></Chart>);}
The Credits component accepts all credits API options as props. The credit text can be passed as children.