All Projects → ChrisKatsaras → React-NBA-Logos

ChrisKatsaras / React-NBA-Logos

Licence: other
React components for NBA team logos 🏀

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React-NBA-Logos

Nba.js
A Node.js library for current and historical NBA stats, scores, and data.
Stars: ✭ 339 (+578%)
Mutual labels:  nba, sports
NBA-Machine-Learning-Sports-Betting
NBA sports betting using machine learning
Stars: ✭ 150 (+200%)
Mutual labels:  nba, sports
cfbscrapR
A scraping and aggregating package using the CollegeFootballData API
Stars: ✭ 25 (-50%)
Mutual labels:  sports, sport
Pydfs Lineup Optimizer
Daily Fantasy Sports lineup optimzer for all popular daily fantasy sports sites
Stars: ✭ 245 (+390%)
Mutual labels:  nba, sports
Nba
Node.js client for nba.com API endpoints
Stars: ✭ 637 (+1174%)
Mutual labels:  nba, sports
Nba Player Movements
🏀 Visualization of NBA games from raw SportVU data logs
Stars: ✭ 481 (+862%)
Mutual labels:  nba, sports
mysportsfeeds-api
Feature requests for the MySportsFeeds Sports Data API.
Stars: ✭ 44 (-12%)
Mutual labels:  nba, sports
scrapeOP
A python package for scraping oddsportal.com
Stars: ✭ 99 (+98%)
Mutual labels:  nba, sports
Basketball analytics
Repository which contains various scripts and work with various basketball statistics
Stars: ✭ 88 (+76%)
Mutual labels:  nba, sports
Sportsipy
A free sports API written for python
Stars: ✭ 229 (+358%)
Mutual labels:  nba, sports
Draftfast
A tool to automate and optimize DraftKings and FanDuel lineup construction.
Stars: ✭ 192 (+284%)
Mutual labels:  nba
Nbastatr
NBA Stats API Wrapper and more for R
Stars: ✭ 226 (+352%)
Mutual labels:  nba
NBA-TopShot-Chrome-Extension
A google chrome extension that allows for sorting by price rather than serial number and highlights differently-tiered serial numbers to help you find the best bang for your buck
Stars: ✭ 22 (-56%)
Mutual labels:  nba
custom-login
Custom Login for WordPress.
Stars: ✭ 28 (-44%)
Mutual labels:  logo
Nba Live
Watch NBA games in the terminal, the content in Chinese only.
Stars: ✭ 181 (+262%)
Mutual labels:  nba
react-watermark-module
React水印组件,支持图片水印,文字水印。
Stars: ✭ 31 (-38%)
Mutual labels:  logo
Nbash
观看NBA比分直播,球员数据的命令行程序。
Stars: ✭ 176 (+252%)
Mutual labels:  nba
Nba Player Movement
Visualization and analysis of NBA player tracking data
Stars: ✭ 156 (+212%)
Mutual labels:  nba
Nba Movement Data
SportVU movement tracking data.
Stars: ✭ 154 (+208%)
Mutual labels:  nba
NBA-Fantasy-Optimizer
NBA Daily Fantasy Lineup Optimizer for FanDuel Using Python
Stars: ✭ 21 (-58%)
Mutual labels:  nba

React NBA Logos

npm

React components for NBA team logos

image

Install

$ npm install react-nba-logos

Usage

import React from 'react';
import { TOR } from 'react-nba-logos';

const Example = () => {
  return <TOR />; // Loads the Toronto Raptors logo
};

export default Example;

or include all icons

import React from 'react';
import * as NBAIcons from 'react-nba-logos';

const Example = () => {
  return <NBAIcons.TOR />; // Loads the Toronto Raptors logo
};

export default Example;

Configuration

Size can be easily configured (Default of 100px)

import React from 'react';
import { TOR } from 'react-nba-logos';

const Example = () => {
  return (
    <div>
      <TOR size={60} />
      <TOR /> // Default of 100px
      <TOR size={140} />
    </div>
  );
};

export default Example;

Results in

Screen Shot 2019-07-11 at 5 50 31 PM

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].