Skip to content

Commit

Permalink
added two new icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmith committed Dec 2, 2020
1 parent fd37c76 commit fba8d34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ export const SomeComponent = () => {
↳ MinusCircleOutline
↳ MinusCircleSolid
↳ MinusOutline
↳ MinusSmOutline
↳ MinusSmSolid
↳ MinusSolid
↳ MoonOutline
↳ MoonSolid
Expand Down Expand Up @@ -343,6 +345,8 @@ export const SomeComponent = () => {
↳ PlusCircleOutline
↳ PlusCircleSolid
↳ PlusOutline
↳ PlusSmOutline
↳ PlusSmSolid
↳ PlusSolid
↳ PresentationChartBarOutline
↳ PresentationChartBarSolid
Expand Down
4 changes: 2 additions & 2 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ function toPascalCase(text) {
const folder = path.join(__dirname, "heroicons");
const iconsFolder = __dirname; // Beware that this could break if the file is moved

const gitRepo = "git clone https://github.com/refactoringui/heroicons.git";
const gitRepo = "git clone https://github.com/tailwindlabs/heroicons.git";

const imports = [];

const processRepo = () => {
try {
["outline", "solid"].forEach((name) => {
const srcFolder = path.join(folder, name);
const srcFolder = path.join(folder, "optimized", name);
const outFolder = path.join(iconsFolder, name);
execSync(`rm -rf ${outFolder}`);

Expand Down

0 comments on commit fba8d34

Please sign in to comment.