1.2.16 • Published 4 months ago

jao-icons v1.2.16

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

JAO icon set

Pixel-based icon set made by Jeffrey Arts, based on binary 2-dimensional arrays. This module will generate SVG icons, based on the available icons in the set Icon(<size/name>)

Installation

npm install --save jao-icons

yarn add jao-icons

How to use

1. Generate SVG elements

import { Icon } from "jao-icons"

Icon("small/cross")

// Output: SVG domElement

2. Get the binary array

import { iconMap } from "jao-icons"

console.log(iconMap.small.cross)

// Output: 2-Dimensional array
// [
// 	[1,0,0,0,1],
// 	[0,1,0,1,0],
// 	[0,0,1,0,0],
// 	[0,1,0,1,0],
// 	[1,0,0,0,1]
// ]

Icons


Large

Medium

Small

1.2.12

8 months ago

1.2.13

8 months ago

1.2.16

4 months ago

1.2.14

8 months ago

1.2.15

8 months ago

1.2.8

10 months ago

1.2.7

10 months ago

1.2.5

10 months ago

1.2.9

10 months ago

1.2.10

10 months ago

1.2.11

10 months ago

1.2.4

11 months ago

1.2.3

11 months ago

1.2.2

11 months ago

1.2.1

11 months ago

1.1.1

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago