A deprecated React SVG icon component that renders the Trustpilot star logo with configurable dimensions and colors.
## Key Components
### `TrustpilotIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `width` | `number \| string` | `2500` | SVG width |
| `height` | `number \| string` | `2500` | SVG height |
| `className` | `string` | `''` | CSS class name |
| `firstColor` | `string` | `#00b67a` | Main star fill color |
| `secondColor` | `string` | `#005128` | Shadow/accent fill color |
### `TrustpilotIcon`
> ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead.
Renders a two-tone Trustpilot star SVG using the brand's standard green palette.
## Usage Example
```typescript
import { TrustpilotIcon } from './trustpilot-icon';
// Default Trustpilot branding
// Custom colors and class
```
> **Migration:** Replace usages with the equivalent icon from `icons-v2-generated` to avoid relying on deprecated components.