1.2.16 • Published 6 months ago

jao-icons v1.2.16

Weekly downloads
-
License
ISC
Repository
github
Last release
6 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

11 months ago

1.2.13

11 months ago

1.2.16

6 months ago

1.2.14

11 months ago

1.2.15

11 months ago

1.2.8

1 year ago

1.2.7

1 year ago

1.2.5

1 year ago

1.2.9

1 year ago

1.2.10

1 year ago

1.2.11

1 year ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.1.1

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago