swarm-icons
v3.8.354
Published
Icons for Swarm Design System
Downloads
50
Readme
swarm-icons
Icon library module of the Swarm Design System
Documentation
https://meetup.github.io/swarm-icons/
Using swarm-icons
in your project
Installation
yarn add swarm-icons
Usage
Optimized svg files
If you need individual svg
files for your project, you will find them in dist/optimized
.
SVG sprite
For an svg sprite, swarm-icons
also generates an HTML include, dist/sprite/sprite.inc
.
You can inject this include into the top of an HTML document (right after the opening body
tag).
For more information about svg sprites, see this article from CSS Tricks.
React
If the svg sprite is included at the top of every HTML document in your React project, you can use the
Icon
component in meetup-web-components
to render the icon.
SVG conventions
- Icons should be drawn to conform to the icon grid
- Icons should be filled with #000000 at 100% opacity
- Icons should be compound paths - these are easier to create in Adobe Illustrator
- The icon path should not contain a stroke
- If it's not an icon (e.g.: Meetup script logotype), send it directly to the engineer
Modifying the icon library, for Sketch users
The default build will generate an icon distribution from the files in src/sketch
, and will generate icon assets for Android, Web, and iOS. If you don't have Sketch and only need to export assets for the Web, follow the instructions for generating icons from SVG source
Sketch file organization
Each platform (web, iOS, Android) has its own page in an icon sketch file. Each platform page contains normal and "small" icon variants. We use this information hierarchy to support different shapes based on platform or variant.
Sketch file structure
<file.sketch>
|
| - Web (page)
| |- icon-name (artboard for default icon)
| |- icon-name--small (artboard for small variant)
| |- icon-name--[otherVariant] (artboard for other variant)
| - iOS (page)
| |- icon-name (artboard for default icon)
| |- icon-name--small (artboard for small variant)
| |- icon-name--[otherVariant] (artboard for other variant)
| - Android (page)
|- icon-name (artboard for default icon)
|- icon-name--small (artboard for small variant)
|- icon-name--[otherVariant] (artboard for other variant)
Artboard naming conventions
- Use lower case letters and hyphens only
- For icon variants such as "small", use a double dash
- for example,
my-icon--small
- for example,
Adding new icons
- Check out a new branch. For example,
new_fancy_icon
. - Use Sketch or Adobe Illustrator templates in
design_resources/
to design a new iconIconGrid.ai
contains the icon gridIconExport.sketch
contains the basic setup for an icon sketch file
- Save the sketch file for your icon to
src/sketch/
- Run
yarn run build
to export icon distribution from sketch files checked intosrc/sketch
- Commit the resulting changes
- Submit a pull request
- The PR will publish a
-beta
tag to npm if you need to test the icon in a consumer app
Changing an icon
- Check out a new branch. For example,
edit_camera_icon
. - Use the sketch source file in
src/sketch/
to make edits - Run
yarn run build
to export icon distributions from sketch files - Commit the resulting changes
- Submit a pull request
- The PR will publish a
-beta
tag to npm
Modifying the icon library without Sketch
If you don't have Sketch, you can generate an icon distribution from the files in src/svg
. Following these instructions will only update the distribution for Web.
SVG folder structure
src/svg
|
|- icon-name.svg (SVG file for default icon)
|- icon-name--small.svg (SVG file for small variant)
|- icon-name--[otherVariant] (SVG file for other variant)
File naming conventions
- Use lower case letters and hyphens only
- For icon variants such as "small", use a double dash
- for example,
my-icon--small
- for example,
Adding new icons
- Check out a new branch. For example,
new_fancy_icon
. - Use the Adobe Illustrator template, found at
design_resources/IconGrid.ai
to design a new icon - Save the SVG files for your icon to
src/svg/
, making sure you followed the SVG conventions - Run
yarn run build:svgSrc
to export icon distribution from sketch files added tosrc/svg
- Commit the resulting changes
- Submit a pull request
- The PR will publish a
-beta
tag to npm if you need to test the icon in a consumer app
Changing an icon
- Check out a new branch. For example,
edit_camera_icon
. - Use the SVG source file in
src/SVG/
to make edits - Run
yarn run build:svgSrc
to export icon distributions from SVG files - Commit the resulting changes
- Submit a pull request
- The PR will publish a
-beta
tag to npm
Reviewing pull requests
Use this handy checklist to review pull requests:
- [ ] Was an icon deleted? If so, did we bump the major version in
Makefile
? - [ ] If the major version was updated in
Makefile
, was theCHANGELOG
updated with release notes? - [ ] Does the icon name make sense out of context, or is it ambiguous?
- [ ] Do the generated SVG exports fit the criteria listed here?
Releases
This package uses semver versioning to tag releases, although the patch version
is determined exclusively by the Travis build number for pushes to master
.
Major and minor versions are hard-coded into the Makefile.
Manual pushes to master
and PR merges to master will be built by Travis, and
will kick off the yarn publish routine. The currently-published version of the
package is shown on the repo homepage on GitHub in a badge at the top of the
README.
Development
Setup
You must have Sketch and the sketchtool cli
installed to run build
command.
Once you have the latest version of Sketch installed, run the following to set up sketchtool
:
~/Applications/Sketch.app/Contents/Resources/sketchtool/install.sh
If you don't have Sketch, build:svgSrc
will work, but will only generate a distribution for Web.
yarn commands
task | description
------------------------- | ------------------------
yarn run build
| builds all icon distributions to dist/
; builds docs to doc/build
yarn run build:svgSrc
| builds Web icon distributions to dist/
; builds docs to doc/build
yarn run publish-docs
| builds and publishes documentation to github pages
Sketch export configuration
The script that exports artboards from sketch files, scripts/exportFromSketch
, reads from a configuration file, exportConfig.json
.
The config file for this script follows this format:
{
"name": <name of export set for reference>,
"options": {
"destination": <destination for exported files>,
"platform": <name of platform "page" in sketch file>,
"format": <export file format>
}
}