Skip to content

Commit

Permalink
add new icons to codebase
Browse files Browse the repository at this point in the history
Summary: These are the new icons that karincurkowicz made! Finally getting to add it to the codebase so we can use it in the new features

Reviewed By: aadsm

Differential Revision: D6960280

fbshipit-source-id: c07b01304defceb06c5176c7d0b2d53215b915ce
  • Loading branch information
shunfu authored and Will Binns-Smith committed Feb 21, 2018
1 parent a27d177 commit 0cc69fd
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
13 changes: 12 additions & 1 deletion modules/nuclide-commons-ui/Icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,18 @@ export type Nuclicon =
| 'nuclicon-warning'
| 'nuclicon-kebab-horizontal'
| 'nuclicon-cs'
| 'nuclicon-metro';
| 'nuclicon-metro'
| 'nuclicon-connected'
| 'nuclicon-disconnected'
| 'nuclicon-eject'
| 'nuclicon-all-items'
| 'nuclicon-local'
| 'nuclicon-remote'
| 'nuclicon-config'
| 'nuclicon-snapshot'
| 'nuclicon-success'
| 'nuclicon-time-start'
| 'nuclicon-time-end';

export type IconName = Nuclicon | atom$Octicon;

Expand Down
33 changes: 33 additions & 0 deletions modules/nuclide-commons-ui/styles/nuclicons.css
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,36 @@ to `resources/nuclicons` and rerun the script.
.icon-nuclicon-metro::before {
content: "\f11a";
}
.icon-nuclicon-connected::before {
content: "\f11b";
}
.icon-nuclicon-disconnected::before {
content: "\f11c";
}
.icon-nuclicon-eject::before {
content: "\f11d";
}
.icon-nuclicon-all-items::before {
content: "\f11e";
}
.icon-nuclicon-local::before {
content: "\f11f";
}
.icon-nuclicon-remote::before {
content: "\f120";
}
.icon-nuclicon-config::before {
content: "\f121";
}
.icon-nuclicon-snapshot::before {
content: "\f122";
}
.icon-nuclicon-success::before {
content: "\f123";
}
.icon-nuclicon-time-start::before {
content: "\f124";
}
.icon-nuclicon-time-end::before {
content: "\f125";
}
Binary file modified modules/nuclide-commons-ui/styles/nuclicons.ttf
Binary file not shown.

0 comments on commit 0cc69fd

Please sign in to comment.