@tant/icons 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/dist/icons.d.ts +59 -0
- package/dist/juuust-react-icon.cjs.js +1680 -0
- package/dist/juuust-react-icon.esm.js +1625 -0
- package/package.json +75 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Jun
|
|
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/README.md
ADDED
package/dist/icons.d.ts
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ComponentType, SVGAttributes } from 'react';
|
|
3
|
+
|
|
4
|
+
interface Props extends SVGAttributes<SVGElement> {
|
|
5
|
+
color?: string;
|
|
6
|
+
size?: string | number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
type Icon = ComponentType<Props>;
|
|
10
|
+
export const ArrowDownRight: Icon;
|
|
11
|
+
export const ArrowLeft: Icon;
|
|
12
|
+
export const ArrowLeftCircle: Icon;
|
|
13
|
+
export const ArrowRight: Icon;
|
|
14
|
+
export const ArrowRightCircle: Icon;
|
|
15
|
+
export const ArrowUp: Icon;
|
|
16
|
+
export const ArrowUpCircle: Icon;
|
|
17
|
+
export const ArrowUpLeft: Icon;
|
|
18
|
+
export const ArrowUpRight: Icon;
|
|
19
|
+
export const AtSign: Icon;
|
|
20
|
+
export const Award: Icon;
|
|
21
|
+
export const BarChart: Icon;
|
|
22
|
+
export const BarChart2: Icon;
|
|
23
|
+
export const Battery: Icon;
|
|
24
|
+
export const BatteryCharging: Icon;
|
|
25
|
+
export const Bell: Icon;
|
|
26
|
+
export const BellOff: Icon;
|
|
27
|
+
export const Bluetooth: Icon;
|
|
28
|
+
export const Bold: Icon;
|
|
29
|
+
export const Book: Icon;
|
|
30
|
+
export const Bookmark: Icon;
|
|
31
|
+
export const BookOpen: Icon;
|
|
32
|
+
export const Box: Icon;
|
|
33
|
+
export const Briefcase: Icon;
|
|
34
|
+
export const Calendar: Icon;
|
|
35
|
+
export const Camera: Icon;
|
|
36
|
+
export const CameraOff: Icon;
|
|
37
|
+
export const Cast: Icon;
|
|
38
|
+
export const Check: Icon;
|
|
39
|
+
export const CheckCircle: Icon;
|
|
40
|
+
export const CheckSquare: Icon;
|
|
41
|
+
export const ChevronDown: Icon;
|
|
42
|
+
export const ChevronLeft: Icon;
|
|
43
|
+
export const ChevronRight: Icon;
|
|
44
|
+
export const ChevronsDown: Icon;
|
|
45
|
+
export const ChevronsLeft: Icon;
|
|
46
|
+
export const ChevronsRight: Icon;
|
|
47
|
+
export const ChevronsUp: Icon;
|
|
48
|
+
export const ChevronUp: Icon;
|
|
49
|
+
export const Chrome: Icon;
|
|
50
|
+
export const Circle: Icon;
|
|
51
|
+
export const Clipboard: Icon;
|
|
52
|
+
export const Clock: Icon;
|
|
53
|
+
export const Cloud: Icon;
|
|
54
|
+
export const CloudDrizzle: Icon;
|
|
55
|
+
export const CloudRain: Icon;
|
|
56
|
+
export const Code: Icon;
|
|
57
|
+
export const CloudLightning: Icon;
|
|
58
|
+
export const CloudOff: Icon;
|
|
59
|
+
export const CloudSnow: Icon;
|