diff --git a/.gitmodules b/.gitmodules index 1e1a43470..7bfc4f4d9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -55,3 +55,6 @@ [submodule "packages/react-icons/src/icons/heroicons-2"] path = packages/react-icons/src/icons/heroicons-2 url = https://github.com/tailwindlabs/heroicons +[submodule "packages/react-icons/src/icons/Circum-Icons"] + path = packages/react-icons/src/icons/Circum-Icons + url = https://github.com/Klarr-Agency/Circum-Icons diff --git a/README.md b/README.md index f391ff07b..57f49f2c5 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ class Question extends React.Component { Icon Library|License|Version|Count ---|---|---|--- +[Circum Icons](https://circumicons.com/)|[MPL-2.0 license](https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE)|1.1|285 [Font Awesome](https://fontawesome.com/)|[CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/)|5.15.4 7d3d774145ac38663f6d1effc6def0334b68ab7e|1612 [Ionicons 4](https://ionicons.com/)|[MIT](https://github.com/ionic-team/ionicons/blob/master/LICENSE)|4.6.3|696 [Ionicons 5](https://ionicons.com/)|[MIT](https://github.com/ionic-team/ionicons/blob/master/LICENSE)|5.5.0|1332 diff --git a/packages/react-icons/VERSIONS b/packages/react-icons/VERSIONS index bf224e0de..34d014388 100644 --- a/packages/react-icons/VERSIONS +++ b/packages/react-icons/VERSIONS @@ -1,5 +1,6 @@ Icon Library|License|Version|Count ---|---|---|--- +[Circum Icons](https://circumicons.com/)|[MPL-2.0 license](https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE)|1.1|285 [Font Awesome](https://fontawesome.com/)|[CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/)|5.15.4 7d3d774145ac38663f6d1effc6def0334b68ab7e|1612 [Ionicons 4](https://ionicons.com/)|[MIT](https://github.com/ionic-team/ionicons/blob/master/LICENSE)|4.6.3|696 diff --git a/packages/react-icons/src/icons/Circum-Icons b/packages/react-icons/src/icons/Circum-Icons new file mode 160000 index 000000000..a2924cb1e --- /dev/null +++ b/packages/react-icons/src/icons/Circum-Icons @@ -0,0 +1 @@ +Subproject commit a2924cb1ee37b9fa39ef023a36f1c884b3492e9b diff --git a/packages/react-icons/src/icons/index.js b/packages/react-icons/src/icons/index.js index baf65f9e3..581651e55 100644 --- a/packages/react-icons/src/icons/index.js +++ b/packages/react-icons/src/icons/index.js @@ -4,6 +4,22 @@ const glob = require("glob-promise"); module.exports = { icons: [ + { + id: "ci", + name: "Circum Icons", + contents: [ + { + files: path.resolve( + __dirname, + "Circum-Icons/svg/*.svg" + ), + formatter: (name) => `Ci${name}`, + } + ], + projectUrl: "https://circumicons.com/", + license: "MPL-2.0 license", + licenseUrl: "https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE", + }, { id: "fa", name: "Font Awesome",