commit 7a85eaf2f329a86a40c23848eb4c25bbcd09cb03 Author: Priyanka Solis Date: Sun Nov 30 08:44:00 2025 +0000 Initial commit: icon set scaffold diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..33819d3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,16 @@ +MIT License + +Copyright (c) 2026 stackline-icons Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. diff --git a/README.md b/README.md new file mode 100644 index 0000000..9014cfe --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# stackline-icons + +A small set of stroked line icons as React components. + +## Install + +``` +npm install stackline-icons +``` diff --git a/icons/ArrowRight.js b/icons/ArrowRight.js new file mode 100644 index 0000000..ccdafbd --- /dev/null +++ b/icons/ArrowRight.js @@ -0,0 +1,3 @@ +export default function ArrowRight(props) { + return ; +} diff --git a/index.js b/index.js new file mode 100644 index 0000000..c1044c6 --- /dev/null +++ b/index.js @@ -0,0 +1,2 @@ +export { default as ArrowRight } from './icons/ArrowRight'; +export { default as Check } from './icons/Check'; diff --git a/package.json b/package.json new file mode 100644 index 0000000..80717fd --- /dev/null +++ b/package.json @@ -0,0 +1,6 @@ +{ + "name": "stackline-icons", + "version": "1.4.0", + "main": "index.js", + "license": "MIT" +}