
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@cardog-icons/react
Advanced tools
React components for car brand logos and icons.
npm install @cardog-icons/react
# or
yarn add @cardog-icons/react
# or
pnpm add @cardog-icons/react
import {
BMWLogo,
BMWLogoDark,
AudiIcon,
TeslaWordmark,
} from "@cardog-icons/react";
function App() {
return (
<div>
{/* Color variants (default) */}
<BMWLogo size={48} />
<AudiIcon size={32} />
<TeslaWordmark height={24} width={120} />
{/* Mono/Dark variants - great for dark mode */}
<BMWLogoDark size={48} className="text-white" />
</div>
);
}
import { Icon } from "@cardog-icons/react";
function App() {
return (
<div>
<Icon name="BMWLogo" size={48} />
<Icon name="BMWLogoDark" size={48} />
<Icon name="AudiIcon" size={32} />
</div>
);
}
import { useIcon } from "@cardog-icons/react";
function CustomIcon({ name, ...props }) {
const icon = useIcon({ name, ...props });
return <div className="custom-icon-wrapper">{icon}</div>;
}
Each brand comes in two variants:
| Variant | Suffix | Description |
|---|---|---|
| Color | (none) | Full-color brand logos for light backgrounds |
| Mono | Dark | Single-color icons for dark mode UIs |
| Type | Color | Mono |
|---|---|---|
| Icon | BMWIcon | BMWIconDark |
| Logo | BMWLogo | BMWLogoDark |
| Horizontal | BMWLogoHorizontal | BMWLogoHorizontalDark |
| Wordmark | BMWWordmark | BMWWordmarkDark |
Acura, Alfa Romeo, Aston Martin, Audi, Bentley, BMW, Bugatti*, Buick*, BYD, Cadillac, Chevrolet, Chrysler, Dodge, Ferrari, Fiat, Ford, Genesis, GMC, Honda, Hummer, Hyundai, Infiniti, Jaguar, Jeep, Kia, Koenigsegg*, Lamborghini, Land Rover, Lexus, Lincoln, Lotus, Lucid, Maserati, Mazda, Mercedes-Benz, McLaren, Mini, Mitsubishi, Nissan, Pagani*, Polestar, Porsche, RAM, Rivian*, Rolls-Royce, Subaru, Tesla, Toyota, VinFast, Volkswagen, Volvo
*Mono variant only
All icon components accept the following props:
| Prop | Type | Default | Description |
|---|---|---|---|
size | number | string | 24 | Size for both width and height |
width | number | string | - | Override width |
height | number | string | - | Override height |
className | string | - | CSS class name |
...svgProps | React.SVGProps<SVGSVGElement> | - | Any valid SVG prop |
MIT © Cardog
FAQs
Car brand icons for React applications
The npm package @cardog-icons/react receives a total of 651 weekly downloads. As such, @cardog-icons/react popularity was classified as not popular.
We found that @cardog-icons/react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.