@stash-ui/duotone-icons 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +35 -0
  3. package/readme.md +54 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Pingback LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@stash-ui/duotone-icons",
3
+ "private": false,
4
+ "version": "1.0.0",
5
+ "license": "MIT",
6
+ "description": "React Duotone Icons Set",
7
+ "authors": [
8
+ "Tiago Gerken <gerken@getpingback.com>",
9
+ "Pedro Ladeira <pedro@getpingback.com>"
10
+ ],
11
+ "module": "dist/duotone-icons.esm.js",
12
+ "main": "index.js",
13
+ "types": "dist/index.d.ts",
14
+ "files": [
15
+ "index.js",
16
+ "manifest.json"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "scripts": {
22
+ "generate-src": "generate-icons --file=X5DiJzGRQXCyEfBqocT235 --style=duotone",
23
+ "build": "rimraf dist && tsdx build --format es,cjs --entry src/index.tsx",
24
+ "watch": "rimraf dist && tsdx watch --format es,cjs --entry src/index.tsx",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "peerDependencies": {
28
+ "react": "^16.x || ^17.x || ^18.x"
29
+ },
30
+ "devDependencies": {
31
+ "@stash-ui/generate-from-figma": "*",
32
+ "tsdx": "0.14.0"
33
+ },
34
+ "gitHead": "895006951d759f2c05a89a5d995bc12634b30df2"
35
+ }
package/readme.md ADDED
@@ -0,0 +1,54 @@
1
+ <div align="center"><strong>@stash-ui/duotone-icons</strong></div>
2
+ <div align="center">Duotone icons variation.</div>
3
+ <br />
4
+ <div align="center">
5
+ <a href="https://icons.stash-ui.com">Website</a>
6
+ <span> · </span>
7
+ <a href="https://github.com/stash-ui/icons">GitHub</a>
8
+ <span> · </span>
9
+ <a href="https://www.figma.com/file/X5DiJzGRQXCyEfBqocT235/%5BPb%5D-Icons-1.0-%E2%9C%85?node-id=0%3A1">Figma</a>
10
+ <span> · </span>
11
+ <a href="https://stash-ui.com/discord">Discord</a>
12
+ </div>
13
+
14
+ ## Install
15
+
16
+ Install the set of duotone icons from your command line.
17
+
18
+ #### With yarn
19
+
20
+ ```sh
21
+ yarn add @stash-ui/duotone-icons
22
+ ```
23
+
24
+ #### With npm
25
+
26
+ ```sh
27
+ npm install @stash-ui/duotone-icons
28
+ ```
29
+
30
+ ## Getting started
31
+
32
+ Add the SVG icon to your application. Include color where needed.
33
+
34
+ ```jsx
35
+ import { AngleDownIcon, AngleUpIcon } from '@stash-ui/duotone-icons';
36
+
37
+ const App = () => {
38
+ return (
39
+ <AngleDownIcon />
40
+ <AngleUpIcon color="#000" />
41
+ );
42
+ };
43
+ ```
44
+
45
+ ## Authors
46
+
47
+ - Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com)
48
+ - Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com)
49
+
50
+ ## License
51
+
52
+ Licensed under the MIT License, Copyright © 2022-present Pingback LLC.
53
+
54
+ See [LICENSE](./LICENSE) for more information.