npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cardog-icons/react-native

v1.1.1

Published

Car brand icons for React Native applications

Downloads

300

Readme

@cardog-icons/react-native

React Native components for car brand logos and icons.

Features

  • 380+ optimized SVG icons for car brands
  • Two variants: Color (default) and Mono (dark mode optimized)
  • TypeScript support with full type definitions
  • Works with react-native-svg
  • Tree-shakable, only import what you need
  • Easy customization of size, color, and other SVG props

Installation

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

Usage

Importing specific icons

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>
  );
}

Using the generic Icon component

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>
  );
}

Icon Variants

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 |

Available Icon Types

  • Icon: Compact badge/emblem icon
  • Logo: Full brand logo
  • LogoHorizontal: Horizontal logo with text
  • Wordmark: Text-only brand name

Naming Examples

| Type | Color | Mono | | ---------- | ------------------- | ----------------------- | | Icon | BMWIcon | BMWIconDark | | Logo | BMWLogo | BMWLogoDark | | Horizontal | BMWLogoHorizontal | BMWLogoHorizontalDark | | Wordmark | BMWWordmark | BMWWordmarkDark |

Available Brands

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

Props

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 |

License

MIT © Cardog