• This repository has been archived on 04/Jul/2019
  • Stars
    star
    832
  • Rank 54,811 (Top 2 %)
  • Language
    HTML
  • Created almost 11 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Open Source Icons for the Web

Geomicons Open

Hand-Coded Open Source Icons for the Web

Fast, Plain & Simple

Smaller than similar webfonts and making fewer network requests than other icon solutions, Geomicons Open is built from the ground up for performance. Designed on a grid for pixel-precision at standard sizes, each icon is hand-coded to avoid the extra bloat from traditional vector drawing applications.

Getting Started

Download the source or install via npm or Bower:

npm install geomicons-open
bower install geomicons-open

Client-side Javascript Usage

Include the client-side JavaScript file.

<script src="geomicons.min.js"></script>

Add the data-icon attribute with an icon name to an element.

<span class="js-geomicon" data-icon="heart"></span>

Pass a nodelist to the geomicons.inject() method to replace elements with SVG icons.

<script>
  var icons = document.querySelectorAll('.js-geomicon');
  geomicons.inject(icons);
</script>

Node Usage

var geomicons = require('geomicons-open');

var pathData = geomicons.paths.heart; // Returns the path's d attribute value
var svgString = geomicons.toString('heart'); // Returns an SVG string

SVG Defs Usage

For a server-side solution, you can use native SVG defs instead of the javascript method above. This method makes zero extra network requests beyond the HTML file that includes it.

Instead of linking to the geomicons.min.js file, copy and paste the contents of the dist/geomicons-defs.svg file in your HTML. This code will not show up in your page.

<svg xmnls="http://www.w3.org/2000/svg" width="0" height="0"><defs>...</defs></svg>

Use the SVG <use> tag to create an instance of an icon.

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16">
  <use xlink:href="#heart"></use>
</svg>

You can also create partials, helper methods, or components to streamline the development process.


Copy/Paste

If you're only using one or two icons in your markup, it's probably better to paste the SVG code inline. Copy the icon from the website or open the icon SVG file and copy and paste the SVG code. Be sure to adjust the id attribute to not conflict with other elements.


Vector Drawing Applications

The SVG files in the dist/icons folder should open in applications such as Adobe Illustrator and Sketch. If you encounter any problems, please create an issue.


React

A React component for Geomicons Open is available on NPM.

npm install react-geomicons

See react-geomicons for more details.


Styling inline SVG with CSS

Inline SVGs can be styled with CSS, just like any other HTML element. Geomicons Open icons have the fill attribute set to currentcolor to inherit the foreground color. Set the width, height, and other properties with additional CSS.

<style>
  .geomicon { width: 1em; height: 1em; }
</style>
<span class="js-geomicon geomicon" data-id="heart"></span>

Sizing

Each icon is designed on a 32 x 32px grid. This means icons will look best at multiples of 16. I recommend sizing icons based on your type scale, or using one of the following sizes: 16, 24, 32, 48, or 64px.

1em

Leaving the default browser font size set at 16px, you can add styles that set width and height in ems and use multiples to keep the icons pixel perfect.

.geomicon {
  width: 1em;
  height: 1em;
}

Requesting Additional Icons

This set is intended to cover the most common use cases, and some things are not well suited to be represented as an icon. I intend to add more, but if you have any requests, please Create an Issue.

Contributing

Geomicons Open is a curated set of icons. Guidelines for contributing are coming soon.

MIT License

More Repositories

1

mdx-deck

♠️ React MDX-based presentation decks
JavaScript
11,314
star
2

loading

This could take a while
CSS
3,531
star
3

colorable

Color combination contrast tester
HTML
1,958
star
4

reflexbox

Moved to https://rebassjs.org
JavaScript
1,354
star
5

fitter-happier-text

Performant, fully fluid headings
HTML
1,291
star
6

repng

React component to PNG converter
JavaScript
890
star
7

palx

🌈 Automatic UI Color Palette Generator
JavaScript
838
star
8

ok-mdx

Browser-based MDX editor
JavaScript
761
star
9

ram

⚛️ React Application Manager: create and run React (and other) applications – no command line or build setup required
JavaScript
585
star
10

react-x-ray

React CSS Layout Debugger
JavaScript
571
star
11

macro-components

Create flexible layout and composite UI components without the need to define arbitrary custom props
JavaScript
485
star
12

plangular

Create custom SoundCloud players with HTML & CSS
HTML
485
star
13

shade

Gradient explorer
HTML
460
star
14

mdx-docs

📝 Document and develop React components with MDX and Next.js
JavaScript
451
star
15

paths

Build and edit SVGs in the browser
JavaScript
418
star
16

tachyons-components

React UI components powered by Tachyons with a styled-components like API
JavaScript
411
star
17

mdx-go

⚡ Lightning fast MDX-based dev server for progressive documentation
JavaScript
362
star
18

microicon

SVG icon microservice
JavaScript
359
star
19

static-react

Zero-configuration CLI React static renderer
JavaScript
350
star
20

reline

React SVG line icon components
JavaScript
247
star
21

react-css-grid

React layout component based on CSS Grid Layout and built with styled-components
JavaScript
241
star
22

refunk

🎧 Simple React functional setState
JavaScript
236
star
23

hello-color

JavaScript
231
star
24

gravitons

JavaScript
218
star
25

layouts

Grab-and-go layouts for React
JavaScript
215
star
26

contrast-swatch

🅰️ Image microservice for color contrast information
JavaScript
209
star
27

axs

Stupid simple style components for React
JavaScript
209
star
28

rgx

React grid system based on minimum and maximum widths
JavaScript
202
star
29

nano-component

Fast & simple React component styles in under 1kb
JavaScript
196
star
30

mdx-blocks

JavaScript
191
star
31

vhs

Post-Future CSS Animations
HTML
184
star
32

papercraft

Hand-coded SVG lettering
CSS
153
star
33

blog

Personal blog on design & development
HTML
146
star
34

figma-theme

Generate development-ready theme JSON files from Figma Styles
JavaScript
137
star
35

react-icons

Building SVG Icons with React
HTML
134
star
36

system-components

https://github.com/jxnblk/styled-system/tree/master/system-components
JavaScript
131
star
37

Heather

A HyperMinimal Jekyll Theme
CSS
129
star
38

rmdi

React Material Design Icons – built with Pixo, Styled Components, and Styled System
JavaScript
129
star
39

geomicons-wired

Geometric Icons
CSS
125
star
40

react-static-site-boilerplate

Demo boilerplate for generating a static site with React
HTML
115
star
41

rebranch

React context-based, conditional rendering components for A/B experiments
JavaScript
107
star
42

Ashley

A Readable & Responsive Theme for Tumblr
CSS
106
star
43

ejsx

Pure JSX templates for rendering static HTML
JavaScript
105
star
44

superbox

DEPRECATED: See https://rebassjs.org/reflexbox instead
JavaScript
102
star
45

live-doc

💫 Convert markdown to live React demos
JavaScript
99
star
46

gatsby-themes

JavaScript
97
star
47

Twipster

CSS
95
star
48

css-to-object

JavaScript
92
star
49

dropbar

JavaScript
88
star
50

react-geomicons

React icon component for Geomicons Open
JavaScript
88
star
51

nano-style

React functional CSS-in-JS
JavaScript
84
star
52

horror

😱 React HTML elements with CSS-in-JS
JavaScript
78
star
53

SoundRad

A Radically Simpler & Faster SoundCloud Player
JavaScript
77
star
54

rebass-recomposed

JavaScript
77
star
55

Spectral

Click the Rainbow
JavaScript
74
star
56

skullcat

a avatar fur mrmrs
JavaScript
73
star
57

_gx

DEPRECATED Minimal responsive React grid system based on the Fab Four Technique.
HTML
73
star
58

vim-mdx-js

Vim Script
73
star
59

stepkit

JavaScript
72
star
60

bumpkit

JavaScript
70
star
61

rrx

⚛️ Minimal React router using higher order components
JavaScript
69
star
62

type-system

HTML
66
star
63

f0

JavaScript
65
star
64

understyle

Functional style utilities for authoring JavaScript style objects
JavaScript
60
star
65

gatsby-theme-mdx-blog

JavaScript
58
star
66

microbeats

Beats Created in Under an Hour
JavaScript
56
star
67

hypercolors

Generative hyperterm color theme
JavaScript
55
star
68

react-cxs

ϟ Alternative React.createElement function which allows style objects to be passed to the className prop to generate CSS
JavaScript
55
star
69

formula

CSS calculator for bulletproof form and button styles that always line up
JavaScript
51
star
70

reaxe

🍬 Syntactic sugar for React.createElement and JSX alternative
JavaScript
51
star
71

tempo

Responsive Grid System
CSS
48
star
72

diet-cola

A lightweight styled-components clone for creating React UI component primitives.
JavaScript
48
star
73

hyperterminator

Hyperterm theme for cybernetic organisms
JavaScript
47
star
74

react-fitter-happier-text

React component for fully fluid headings
JavaScript
46
star
75

css-scss

Convert CSS syntax to SCSS with calc, variables, and custom media queries
JavaScript
44
star
76

react-owl

🦉 React layout component based on the lobotomized owl selector and built with styled-components
JavaScript
42
star
77

robox

Higher-order React component for adding style helper props based on understyle
JavaScript
41
star
78

monochrome

JavaScript
40
star
79

hyp

ϟ Functional UI component microlibrary with ES6 tagged template literals
JavaScript
39
star
80

superstyle

CSSOM-JS utility library
JavaScript
39
star
81

universal-components

JavaScript
38
star
82

scrs

JavaScript
38
star
83

hidden-styled

JavaScript
37
star
84

grays

HTML
35
star
85

colorable-app

Color constrast checker
JavaScript
34
star
86

principles

My principles of web design
HTML
33
star
87

object-style

JavaScript
33
star
88

redeck

DEPRECATED: see https://github.com/jxnblk/mdx-deck
JavaScript
32
star
89

react-component-permutations

Uses propTypes to create an array of React component props to display various permutations.
HTML
32
star
90

tag-hoc

React HOC to set an element's tag and remove props
JavaScript
31
star
91

cxs-components

Styled UI component primitives for React - built with cxs
JavaScript
31
star
92

kenburns

Sass mixin for Ken Burns effect background images
CSS
30
star
93

json-react

JavaScript
30
star
94

react-media-context

React higher-order component (HOC) to provide context for the currently matched media query.
JavaScript
30
star
95

watch

In case you forget what time it is
JavaScript
30
star
96

react-simple-icons

JavaScript
29
star
97

path-ast

SVG path element command parser/stringifier
JavaScript
29
star
98

simple-modular-scale

Modular scale generator based on an array of ratios
JavaScript
29
star
99

typography-system

JavaScript
28
star
100

mdx-themes

JavaScript
26
star