It's about time you showed up!

Cubing Icons that are allowed (see license) for all projects! There should probably be more text here.

How to Use (with npm)

Create the following files:
// ************** index.html **************
<!DOCTYPE html>
<html>
    <body>
        <div id="app"></div>
        <script src="./index.jsx"></script>
    </body>
</html>

// ************** index.jsx **************
import React from "react";
import ReactDom from "react-dom";

import "@cubing/icons";

function App() {
  return <span className="cubing-icon event-333oh"></span>;
}

ReactDom.render(<App />, document.getElementById("app"));
Run the following commands:
$ npm init  # if you are not already in a javascript project!
$ npm install --save-dev parcel  # if you are not already using parcel or another tool (such as webpack)
$ npm install --save react react-dom @cubing/icons
$ npx parcel index.html
# Check it out at http://localhost:1234!

How to Use (without npm)

  1. Download the icons here. Place cubing-icons.css into your css directory.
  2. Put this CSS file in the <head> tag of your web page: <link rel="stylesheet" href="css/cubing-icons.css">
  3. To use the icons, such as , use the following code: <span class="cubing-icon event-333"></span>
  4. See below for a full list of icons.

Cubing Icons List