The [`style` input in PlotlyComponent](https://github.com/plotly/angular-plotly.js/blob/5201d97fc2e01e5533d08a921cd44e28265a9222/projects/plotly/src/lib/plotly.component.ts#L50) conflicts with [the global Angular binding](https://angular.dev/guide/templates/binding#css-style-properties), which itself is linked to [the native HTML `style` attribute](https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/style). It looks like it's actually bound it to the _inner_ element's `ngStyle`. `ngStyle` and `style` are essentially equivalent, with [the current Angular style guide preferring `style`](https://angular.dev/style-guide#prefer-class-and-style-over-ngclass-and-ngstyle). I propose to a rename of the input, to something like `elementStyle`, `innerStyle`, `plotElementStyle`, or the like.