diff --git a/README.md b/README.md index 84c5157..1fd8ed2 100644 --- a/README.md +++ b/README.md @@ -309,6 +309,8 @@ export const SomeComponent = () => { ↳ MinusCircleOutline ↳ MinusCircleSolid ↳ MinusOutline +↳ MinusSmOutline +↳ MinusSmSolid ↳ MinusSolid ↳ MoonOutline ↳ MoonSolid @@ -343,6 +345,8 @@ export const SomeComponent = () => { ↳ PlusCircleOutline ↳ PlusCircleSolid ↳ PlusOutline +↳ PlusSmOutline +↳ PlusSmSolid ↳ PlusSolid ↳ PresentationChartBarOutline ↳ PresentationChartBarSolid diff --git a/build.js b/build.js index f846532..fc81181 100644 --- a/build.js +++ b/build.js @@ -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}`);