Initial commit: icon set scaffold

This commit is contained in:
Priyanka Solis 2025-11-30 08:44:00 +00:00
commit 7a85eaf2f3
5 changed files with 36 additions and 0 deletions

16
LICENSE Normal file
View File

@ -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.

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# stackline-icons
A small set of stroked line icons as React components.
## Install
```
npm install stackline-icons
```

3
icons/ArrowRight.js Normal file
View File

@ -0,0 +1,3 @@
export default function ArrowRight(props) {
return <svg {...props} viewBox="0 0 24 24"><path d="M5 12h14M13 6l6 6-6 6" /></svg>;
}

2
index.js Normal file
View File

@ -0,0 +1,2 @@
export { default as ArrowRight } from './icons/ArrowRight';
export { default as Check } from './icons/Check';

6
package.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "stackline-icons",
"version": "1.4.0",
"main": "index.js",
"license": "MIT"
}