
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-native
Advanced tools
React Native components for car brand logos and icons.
npm install @cardog-icons/react-native react-native-svg
# or
yarn add @cardog-icons/react-native react-native-svg
# or
pnpm add @cardog-icons/react-native react-native-svg
For Expo projects:
npx expo install @cardog-icons/react-native react-native-svg
import {
BMWLogo,
BMWLogoDark,
AudiIcon,
TeslaWordmark,
} from "@cardog-icons/react-native";
function MyScreen() {
return (
<View style={{ padding: 20 }}>
{/* Color variants (default) */}
<BMWLogo width={48} height={48} />
<AudiIcon width={32} height={32} />
<TeslaWordmark width={120} height={24} />
{/* Mono/Dark variants - great for dark mode */}
<BMWLogoDark width={48} height={48} fill="white" />
</View>
);
}
import { Icon } from "@cardog-icons/react-native";
function MyScreen() {
return (
<View>
<Icon name="BMWLogo" width={48} height={48} />
<Icon name="BMWLogoDark" width={48} height={48} fill="white" />
<Icon name="AudiIcon" width={32} height={32} />
</View>
);
}
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 |
|---|---|---|---|
width | number | string | 24 | Width of the icon |
height | number | string | 24 | Height of the icon |
fill | string | - | Fill color for mono icons |
...svgProps | SvgProps | - | Any valid SVG prop |
MIT © Cardog
FAQs
Car brand icons for React Native applications
We found that @cardog-icons/react-native 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.