Code Monkey home page Code Monkey logo

brandicons's Introduction

Brand Icons

A copy of heroicons but with brand's logos. Good place to find brand vectors is here: https://www.vectorlogo.zone/

Basic Usage

The quickest way to use these icons is to simply copy the source for the icon you need from optimized and inline it directly into your HTML:

<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  <path
    stroke-linecap="round"
    stroke-linejoin="round"
    stroke-width="2"
    d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
  />
</svg>

Unlike heroicons, these icons are not meant to be colored with styles.

React

First, install @brandicons/react from npm:

npm install @brandicons/react

Now each icon can be imported individually as a React component:

import { SalesforceIcon } from '@brandicons/react'

function MyComponent() {
  return (
    <div>
      <SalesforceIcon className="h-5 w-5" />
      <p>...</p>
    </div>
  )
}

The 20x20 icons can be imported from @brandicons/react.

Icons use an upper camel case naming convention and are always suffixed with the word Icon.

Vue

Note that this library currently only supports Vue 3.

First, install @brandicons/vue from npm:

npm install @brandicons/vue

Now each icon can be imported individually as a Vue component:

<template>
  <div>
    <BeakerIcon class="h-5 w-5 text-blue-500" />
    <p>...</p>
  </div>
</template>

<script>
import { SalesforceIcon } from '@brandicons/vue'

export default {
  components: { SalesforceIcon },
}
</script>

The 20x20 icons can be imported from @brandicons/vue.

Icons use an upper camel case naming convention and are always suffixed with the word Icon.

License

This library is MIT licensed. All logos and other brand marks are Copyright their respective brands.

brandicons's People

Contributors

ntotten avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.