{"id":17381769,"url":"https://github.com/dubdubdubco/iconicicons","last_synced_at":"2025-02-27T10:30:35.707Z","repository":{"id":40704128,"uuid":"363880599","full_name":"dubdubdubco/iconicicons","owner":"dubdubdubco","description":"Free “do wtf you want with” pixel-perfect icons.","archived":false,"fork":false,"pushed_at":"2023-01-09T14:54:44.000Z","size":1842,"stargazers_count":314,"open_issues_count":7,"forks_count":9,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-10-08T00:03:24.693Z","etag":null,"topics":["icon-pack","icons","react","vue"],"latest_commit_sha":null,"homepage":"https://iconic.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dubdubdubco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-03T09:35:28.000Z","updated_at":"2024-09-25T14:20:16.000Z","dependencies_parsed_at":"2023-02-08T12:30:31.519Z","dependency_job_id":null,"html_url":"https://github.com/dubdubdubco/iconicicons","commit_stats":null,"previous_names":["dubdubdubco/iconicicons","make-lemonade/iconicicons"],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubdubdubco%2Ficonicicons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubdubdubco%2Ficonicicons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubdubdubco%2Ficonicicons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubdubdubco%2Ficonicicons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dubdubdubco","download_url":"https://codeload.github.com/dubdubdubco/iconicicons/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219850238,"owners_count":16556321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["icon-pack","icons","react","vue"],"created_at":"2024-10-16T07:01:41.301Z","updated_at":"2024-10-16T07:04:46.497Z","avatar_url":"https://github.com/dubdubdubco.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://user-images.githubusercontent.com/203882/116871351-06e22100-ac0c-11eb-9ae5-7524e308ad7c.jpg\" alt=\"Iconic Icons\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    Iconic is a free “do wtf you want with” set of pixel-perfect icons. \u003cbr\u003eAvailable as basic SVG icons and via first-party \u003ca href=\"#react\"\u003eReact\u003c/a\u003e and \u003ca href=\"#vue\"\u003eVue\u003c/a\u003e libraries.\n\u003cp\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://iconic.app\"\u003e\u003cstrong\u003eBrowse at iconic.app \u0026rarr;\u003c/strong\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Basic Usage\n\nThe quickest way to use these icons is to simply copy the source for the icon you need from [iconic.app](https://iconic.app/) and inline it directly into your HTML:\n\n```html\n\u003csvg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n    \u003cpath d=\"M13.75 6.75L19.25 12L13.75 17.25\" stroke=\"#141414\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003c/path\u003e\n    \u003cpath d=\"M19 12H4.75\" stroke=\"#141414\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n```\n\n## React\n\nFirst, install `@iconicicons/react` from npm:\n\n```sh\nnpm install @iconicicons/react\n```\n\nNow each icon can be imported individually as a React component:\n\n```js\nimport { BatteryIcon } from '@iconicicons/react'\n\nfunction MyComponent() {\n  return (\n    \u003cdiv\u003e\n      \u003cBatteryIcon /\u003e\n      \u003cp\u003e...\u003c/p\u003e\n    \u003c/div\u003e\n  )\n}\n```\n\nIcons use an upper camel case naming convention and are always suffixed with the word `Icon`.\n\n## Vue\n\nFirst, install `@iconicicons/vue` or `@iconicicons/vue3` from npm:\n\n```sh\nnpm install @iconicicons/vue // for Vue 2\nnpm install @iconicicons/vue3 // for Vue 3\n```\n\nNow each icon can be imported individually as a Vue component:\n\n```vue\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003cBatteryIcon /\u003e\n    \u003cp\u003e...\u003c/p\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport { BatteryIcon } from '@iconicicons/vue'\n\nexport default {\n  components: { BatteryIcon }\n}\n\u003c/script\u003e\n```\n\nIcons use an upper camel case naming convention and are always suffixed with the word `Icon`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdubdubdubco%2Ficonicicons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdubdubdubco%2Ficonicicons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdubdubdubco%2Ficonicicons/lists"}