@aliimam/icons 0.0.2 → 0.0.3
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/dist/cjs/icons/arrows/ArrowDown.js +1 -1
- package/dist/cjs/icons/arrows/ArrowUpp.d.ts +3 -0
- package/dist/cjs/icons/arrows/ArrowUpp.js +50 -0
- package/dist/cjs/icons/arrows/index.d.ts +1 -0
- package/dist/cjs/icons/arrows/index.js +3 -1
- package/dist/icons/arrows/ArrowDown.js +1 -1
- package/dist/icons/arrows/ArrowUpp.d.ts +3 -0
- package/dist/icons/arrows/ArrowUpp.js +14 -0
- package/dist/icons/arrows/index.d.ts +1 -0
- package/dist/icons/arrows/index.js +1 -0
- package/icons/icons/arrows/arrow-down.svg +1 -1
- package/icons/icons/arrows/arrow-upp.svg +1 -0
- package/package.json +1 -1
- package/src/icons/arrows/ArrowDown.tsx +1 -1
- package/src/icons/arrows/ArrowUpp.tsx +59 -0
- package/src/icons/arrows/index.ts +1 -0
|
@@ -37,7 +37,7 @@ exports.ArrowDown = void 0;
|
|
|
37
37
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
38
38
|
const React = __importStar(require("react"));
|
|
39
39
|
exports.ArrowDown = React.forwardRef(function ArrowDown({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, variant = "stroke", ...props }, forwardedRef) {
|
|
40
|
-
return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.
|
|
40
|
+
return ((0, jsx_runtime_1.jsx)("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.85351 12.8535C7.65825 13.0488 7.34174 13.0488 7.14648 12.8535L3.14648 8.85352C2.95121 8.65826 2.95121 8.34175 3.14648 8.14649C3.34174 7.95123 3.65825 7.95123 3.85351 8.14649L6.99999 11.293L6.99999 2.50001C6.99999 2.22387 7.22385 2.00001 7.49999 2.00001C7.77613 2.00001 7.99999 2.22387 7.99999 2.50001L7.99999 11.293L11.1465 8.14649C11.3417 7.95123 11.6582 7.95123 11.8535 8.14649Z", fill: color }) }));
|
|
41
41
|
});
|
|
42
42
|
exports.ArrowDown.displayName = "ArrowDown";
|
|
43
43
|
exports.ArrowDown.metadata = {
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ArrowUpp = void 0;
|
|
37
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
38
|
+
const React = __importStar(require("react"));
|
|
39
|
+
exports.ArrowUpp = React.forwardRef(function ArrowUpp({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, variant = "stroke", ...props }, forwardedRef) {
|
|
40
|
+
return ((0, jsx_runtime_1.jsx)("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: (0, jsx_runtime_1.jsx)("path", { d: "M3.2 20 11.2 12 3.2 4M14.2 20 21.2 12 14.2 4", stroke: color, strokeWidth: strokeWidth, strokeLinecap: "round", strokeLinejoin: "round" }) }));
|
|
41
|
+
});
|
|
42
|
+
exports.ArrowUpp.displayName = "ArrowUpp";
|
|
43
|
+
exports.ArrowUpp.metadata = {
|
|
44
|
+
name: "ArrowUpp",
|
|
45
|
+
category: "icons",
|
|
46
|
+
tags: ["arrow", "upp", "interface", "ui", "icon"],
|
|
47
|
+
description: "ArrowUpp icon from icons category",
|
|
48
|
+
variants: ["stroke", "solid"],
|
|
49
|
+
};
|
|
50
|
+
exports.default = exports.ArrowUpp;
|
|
@@ -3,9 +3,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.ArrowDown = exports.ArrowUp = exports.ArrowRight = exports.ArrowLeft = void 0;
|
|
6
|
+
exports.ArrowDown = exports.ArrowUp = exports.ArrowRight = exports.ArrowUpp = exports.ArrowLeft = void 0;
|
|
7
7
|
var ArrowLeft_1 = require("./ArrowLeft");
|
|
8
8
|
Object.defineProperty(exports, "ArrowLeft", { enumerable: true, get: function () { return __importDefault(ArrowLeft_1).default; } });
|
|
9
|
+
var ArrowUpp_1 = require("./ArrowUpp");
|
|
10
|
+
Object.defineProperty(exports, "ArrowUpp", { enumerable: true, get: function () { return __importDefault(ArrowUpp_1).default; } });
|
|
9
11
|
var ArrowRight_1 = require("./ArrowRight");
|
|
10
12
|
Object.defineProperty(exports, "ArrowRight", { enumerable: true, get: function () { return __importDefault(ArrowRight_1).default; } });
|
|
11
13
|
var ArrowUp_1 = require("./ArrowUp");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
export const ArrowDown = React.forwardRef(function ArrowDown({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, variant = "stroke", ...props }, forwardedRef) {
|
|
4
|
-
return (_jsx("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: _jsx("path", { d: "M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.
|
|
4
|
+
return (_jsx("svg", { width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: _jsx("path", { d: "M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.85351 12.8535C7.65825 13.0488 7.34174 13.0488 7.14648 12.8535L3.14648 8.85352C2.95121 8.65826 2.95121 8.34175 3.14648 8.14649C3.34174 7.95123 3.65825 7.95123 3.85351 8.14649L6.99999 11.293L6.99999 2.50001C6.99999 2.22387 7.22385 2.00001 7.49999 2.00001C7.77613 2.00001 7.99999 2.22387 7.99999 2.50001L7.99999 11.293L11.1465 8.14649C11.3417 7.95123 11.6582 7.95123 11.8535 8.14649Z", fill: color }) }));
|
|
5
5
|
});
|
|
6
6
|
ArrowDown.displayName = "ArrowDown";
|
|
7
7
|
ArrowDown.metadata = {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
export const ArrowUpp = React.forwardRef(function ArrowUpp({ color = "currentColor", fill, strokeWidth, strokeLinecap, strokeLinejoin, strokeDasharray, opacity, className, variant = "stroke", ...props }, forwardedRef) {
|
|
4
|
+
return (_jsx("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, strokeWidth: strokeWidth, strokeLinecap: strokeLinecap, strokeLinejoin: strokeLinejoin, strokeDasharray: strokeDasharray, opacity: opacity, ...props, ref: forwardedRef, children: _jsx("path", { d: "M3.2 20 11.2 12 3.2 4M14.2 20 21.2 12 14.2 4", stroke: color, strokeWidth: strokeWidth, strokeLinecap: "round", strokeLinejoin: "round" }) }));
|
|
5
|
+
});
|
|
6
|
+
ArrowUpp.displayName = "ArrowUpp";
|
|
7
|
+
ArrowUpp.metadata = {
|
|
8
|
+
name: "ArrowUpp",
|
|
9
|
+
category: "icons",
|
|
10
|
+
tags: ["arrow", "upp", "interface", "ui", "icon"],
|
|
11
|
+
description: "ArrowUpp icon from icons category",
|
|
12
|
+
variants: ["stroke", "solid"],
|
|
13
|
+
};
|
|
14
|
+
export default ArrowUpp;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.
|
|
1
|
+
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.85351 12.8535C7.65825 13.0488 7.34174 13.0488 7.14648 12.8535L3.14648 8.85352C2.95121 8.65826 2.95121 8.34175 3.14648 8.14649C3.34174 7.95123 3.65825 7.95123 3.85351 8.14649L6.99999 11.293L6.99999 2.50001C6.99999 2.22387 7.22385 2.00001 7.49999 2.00001C7.77613 2.00001 7.99999 2.22387 7.99999 2.50001L7.99999 11.293L11.1465 8.14649C11.3417 7.95123 11.6582 7.95123 11.8535 8.14649Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.2 20 11.2 12 3.2 4M14.2 20 21.2 12 14.2 4" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@ export const ArrowDown: IconComponent = React.forwardRef<
|
|
|
36
36
|
ref={forwardedRef}
|
|
37
37
|
>
|
|
38
38
|
<path
|
|
39
|
-
d="M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.
|
|
39
|
+
d="M11.8535 8.14649C12.0488 8.34175 12.0488 8.65826 11.8535 8.85352L7.85351 12.8535C7.65825 13.0488 7.34174 13.0488 7.14648 12.8535L3.14648 8.85352C2.95121 8.65826 2.95121 8.34175 3.14648 8.14649C3.34174 7.95123 3.65825 7.95123 3.85351 8.14649L6.99999 11.293L6.99999 2.50001C6.99999 2.22387 7.22385 2.00001 7.49999 2.00001C7.77613 2.00001 7.99999 2.22387 7.99999 2.50001L7.99999 11.293L11.1465 8.14649C11.3417 7.95123 11.6582 7.95123 11.8535 8.14649Z"
|
|
40
40
|
fill={color}
|
|
41
41
|
/>
|
|
42
42
|
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { IconProps, IconMetadata, IconComponent } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const ArrowUpp: IconComponent = React.forwardRef<
|
|
5
|
+
SVGSVGElement,
|
|
6
|
+
IconProps
|
|
7
|
+
>(function ArrowUpp(
|
|
8
|
+
{
|
|
9
|
+
color = "currentColor",
|
|
10
|
+
fill,
|
|
11
|
+
strokeWidth,
|
|
12
|
+
strokeLinecap,
|
|
13
|
+
strokeLinejoin,
|
|
14
|
+
strokeDasharray,
|
|
15
|
+
opacity,
|
|
16
|
+
className,
|
|
17
|
+
variant = "stroke",
|
|
18
|
+
...props
|
|
19
|
+
},
|
|
20
|
+
forwardedRef,
|
|
21
|
+
) {
|
|
22
|
+
return (
|
|
23
|
+
<svg
|
|
24
|
+
width="24"
|
|
25
|
+
height="24"
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
29
|
+
className={className}
|
|
30
|
+
strokeWidth={strokeWidth}
|
|
31
|
+
strokeLinecap={strokeLinecap}
|
|
32
|
+
strokeLinejoin={strokeLinejoin}
|
|
33
|
+
strokeDasharray={strokeDasharray}
|
|
34
|
+
opacity={opacity}
|
|
35
|
+
{...props}
|
|
36
|
+
ref={forwardedRef}
|
|
37
|
+
>
|
|
38
|
+
<path
|
|
39
|
+
d="M3.2 20 11.2 12 3.2 4M14.2 20 21.2 12 14.2 4"
|
|
40
|
+
stroke={color}
|
|
41
|
+
strokeWidth={strokeWidth}
|
|
42
|
+
strokeLinecap="round"
|
|
43
|
+
strokeLinejoin="round"
|
|
44
|
+
/>
|
|
45
|
+
</svg>
|
|
46
|
+
);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
ArrowUpp.displayName = "ArrowUpp";
|
|
50
|
+
|
|
51
|
+
ArrowUpp.metadata = {
|
|
52
|
+
name: "ArrowUpp",
|
|
53
|
+
category: "icons",
|
|
54
|
+
tags: ["arrow", "upp", "interface", "ui", "icon"],
|
|
55
|
+
description: "ArrowUpp icon from icons category",
|
|
56
|
+
variants: ["stroke", "solid"],
|
|
57
|
+
} as IconMetadata;
|
|
58
|
+
|
|
59
|
+
export default ArrowUpp;
|