From 7a85eaf2f329a86a40c23848eb4c25bbcd09cb03 Mon Sep 17 00:00:00 2001 From: Priyanka Solis Date: Sun, 30 Nov 2025 08:44:00 +0000 Subject: [PATCH] Initial commit: icon set scaffold --- LICENSE | 16 ++++++++++++++++ README.md | 9 +++++++++ icons/ArrowRight.js | 3 +++ index.js | 2 ++ package.json | 6 ++++++ 5 files changed, 36 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 icons/ArrowRight.js create mode 100644 index.js create mode 100644 package.json 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" +}