All Projects → BitcoinDesign → Bitcoin-Icons

BitcoinDesign / Bitcoin-Icons

Licence: other
Icons made for Bitcoin applications, free to use.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Bitcoin-Icons

Azure Design
Here you will find my complete Azure Visio Stencil and bonus SVG and PNG versions for all of the Azure Service and configuration items.
Stars: ✭ 470 (+803.85%)
Mutual labels:  design, icons
Dctb Links
My Personal Links
Stars: ✭ 65 (+25%)
Mutual labels:  design, icons
Fluentui System Icons
Fluent System Icons are a collection of familiar, friendly and modern icons from Microsoft.
Stars: ✭ 3,413 (+6463.46%)
Mutual labels:  design, icons
Css Flags
A collection of pure CSS flags, all single divs.
Stars: ✭ 90 (+73.08%)
Mutual labels:  design, icons
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+23150%)
Mutual labels:  design, icons
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (+261.54%)
Mutual labels:  design, icons
Vscode Icons
Custom Visual Studio Code Icons
Stars: ✭ 1,021 (+1863.46%)
Mutual labels:  design, icons
Assets
A collection of https://www.freeCodeCamp.org logos and other assets
Stars: ✭ 94 (+80.77%)
Mutual labels:  design, icons
Mato
Mato - Icon pack for Linux
Stars: ✭ 117 (+125%)
Mutual labels:  design, icons
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (+167.31%)
Mutual labels:  design, icons
React Kawaii
Cute SVG React Components
Stars: ✭ 2,709 (+5109.62%)
Mutual labels:  design, icons
OwlBottomSheet
Simple library to show a bottom sheet like Owl app from Material Design studies cases
Stars: ✭ 44 (-15.38%)
Mutual labels:  design
social-logos
A repository of all the social logos we use on WordPress.com
Stars: ✭ 110 (+111.54%)
Mutual labels:  icons
data-algorithms-with-spark
O'Reilly Book: [Data Algorithms with Spark] by Mahmoud Parsian
Stars: ✭ 34 (-34.62%)
Mutual labels:  design
ddd-example-ecommerce
Domain-driven design example in Java with Spring framework
Stars: ✭ 73 (+40.38%)
Mutual labels:  design
vue-icon
Maybe it is the smallest vue component that contains all the feather icons
Stars: ✭ 44 (-15.38%)
Mutual labels:  icons
yaru-remix
My Novice approach for yaru-remix
Stars: ✭ 57 (+9.62%)
Mutual labels:  icons
word-color
Finds colors associated with a word, basically https://picular.co/
Stars: ✭ 39 (-25%)
Mutual labels:  design
vue-feather
Feather component for Vue.js.
Stars: ✭ 108 (+107.69%)
Mutual labels:  icons
design-scuole-wordpress-theme
Tema Wordpress dedicato al progetto per i siti delle scuole
Stars: ✭ 40 (-23.08%)
Mutual labels:  design

banner image

Bitcoin Icons (WIP)

Bitcoin Icons is an open-source/open-design set of icons made for Bitcoin centric applications. Included are general icons most applications need like arrows and a home icon, and maybe more importantly Bitcoin-specific icons like a wallet, keys, miner and Bitcoin symbols.

Icons are available as a public Figma community file for design work. This repository contains icon exports as SVGs for implementation.

For requests, please leave a comment on the Figma file or post an issue to this repo. This could be new icons, improvements to existing icons, more style or export formats, or anything else. Just reach out.

Bitcoin Icons is a sister project of the Bitcoin Wallet UI Kit created by GBKS.

Contributing

For info on how to contribute please see the contribution guidelines. Also see details on the release process.

Node Module

The node module is still in development. For now, you can install it and then pull the SVGs into a build system such as Gulp. In the future, there may be more options for importing the icons, such as font files, javascript imports, etc.

To install the node module pre-release version, run:

npm install @bitcoin-design/bitcoin-icons

React

npm version npm downloads

First, install @bitcoin-design/bitcoin-icons-react from npm:

npm install @bitcoin-design/bitcoin-icons-react

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

import { BitcoinIcon } from '@bitcoin-design/bitcoin-icons-react/filled'

function MyComponent() {
  return (
    <div>
      <BitcoinIcon style={{height: "5px", width: "5px", color: '#F7931A' }} />
      <p>...</p>
    </div>
  )
}

The outline icons can be imported from @bitcoin-design/bitcoin-icons-react/outline, and the filled icons can be imported from @bitcoin-design/bitcoin-icons-react/filled.

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

Vue

npm version npm downloads

Note that this library currently only supports Vue 3.

First, install @bitcoin-design/bitcoin-icons-vue from npm:

npm install @bitcoin-design/bitcoin-icons-vue

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

<template>
  <div>
    <BitcoinIcon style="height:5px;width:5px;color:#F7931A" />
    <p>...</p>
  </div>
</template>

<script>
import { BitcoinIcon } from '@bitcoin-design/bitcoin-icons-vue/filled'

export default {
  components: { BitcoinIcon }
}
</script>

The outline icons can be imported from @bitcoin-design/bitcoin-icons-vue/outline, and the filled icons can be imported from @bitcoin-design/bitcoin-icons-vue/filled.

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].