mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 15:31:52 +00:00
config redirect
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function AcademicCapIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default AcademicCapIcon;
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
const React = require("react");
|
||||
|
||||
function AcademicCapIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M11.7 2.805a.75.75 0 01.6 0A60.65 60.65 0 0122.83 8.72a.75.75 0 01-.231 1.337 49.949 49.949 0 00-9.902 3.912l-.003.002-.34.18a.75.75 0 01-.707 0A50.009 50.009 0 007.5 12.174v-.224c0-.131.067-.248.172-.311a54.614 54.614 0 014.653-2.52.75.75 0 00-.65-1.352 56.129 56.129 0 00-4.78 2.589 1.858 1.858 0 00-.859 1.228 49.803 49.803 0 00-4.634-1.527.75.75 0 01-.231-1.337A60.653 60.653 0 0111.7 2.805z"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
d: "M13.06 15.473a48.45 48.45 0 017.666-3.282c.134 1.414.22 2.843.255 4.285a.75.75 0 01-.46.71 47.878 47.878 0 00-8.105 4.342.75.75 0 01-.832 0 47.877 47.877 0 00-8.104-4.342.75.75 0 01-.461-.71c.035-1.442.121-2.87.255-4.286A48.4 48.4 0 016 13.18v1.27a1.5 1.5 0 00-.14 2.508c-.09.38-.222.753-.397 1.11.452.213.901.434 1.346.661a6.729 6.729 0 00.551-1.608 1.5 1.5 0 00.14-2.67v-.645a48.549 48.549 0 013.44 1.668 2.25 2.25 0 002.12 0z"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
d: "M4.462 19.462c.42-.419.753-.89 1-1.394.453.213.902.434 1.347.661a6.743 6.743 0 01-1.286 1.794.75.75 0 11-1.06-1.06z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(AcademicCapIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function AdjustmentsHorizontalIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default AdjustmentsHorizontalIcon;
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
const React = require("react");
|
||||
|
||||
function AdjustmentsHorizontalIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M18.75 12.75h1.5a.75.75 0 000-1.5h-1.5a.75.75 0 000 1.5zM12 6a.75.75 0 01.75-.75h7.5a.75.75 0 010 1.5h-7.5A.75.75 0 0112 6zM12 18a.75.75 0 01.75-.75h7.5a.75.75 0 010 1.5h-7.5A.75.75 0 0112 18zM3.75 6.75h1.5a.75.75 0 100-1.5h-1.5a.75.75 0 000 1.5zM5.25 18.75h-1.5a.75.75 0 010-1.5h1.5a.75.75 0 010 1.5zM3 12a.75.75 0 01.75-.75h7.5a.75.75 0 010 1.5h-7.5A.75.75 0 013 12zM9 3.75a2.25 2.25 0 100 4.5 2.25 2.25 0 000-4.5zM12.75 12a2.25 2.25 0 114.5 0 2.25 2.25 0 01-4.5 0zM9 15.75a2.25 2.25 0 100 4.5 2.25 2.25 0 000-4.5z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(AdjustmentsHorizontalIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function AdjustmentsVerticalIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default AdjustmentsVerticalIcon;
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
const React = require("react");
|
||||
|
||||
function AdjustmentsVerticalIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M6 12a.75.75 0 01-.75-.75v-7.5a.75.75 0 111.5 0v7.5A.75.75 0 016 12zM18 12a.75.75 0 01-.75-.75v-7.5a.75.75 0 011.5 0v7.5A.75.75 0 0118 12zM6.75 20.25v-1.5a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0zM18.75 18.75v1.5a.75.75 0 01-1.5 0v-1.5a.75.75 0 011.5 0zM12.75 5.25v-1.5a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0zM12 21a.75.75 0 01-.75-.75v-7.5a.75.75 0 011.5 0v7.5A.75.75 0 0112 21zM3.75 15a2.25 2.25 0 104.5 0 2.25 2.25 0 00-4.5 0zM12 11.25a2.25 2.25 0 110-4.5 2.25 2.25 0 010 4.5zM15.75 15a2.25 2.25 0 104.5 0 2.25 2.25 0 00-4.5 0z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(AdjustmentsVerticalIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArchiveBoxArrowDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArchiveBoxArrowDownIcon;
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArchiveBoxArrowDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3H3.375z"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M3.087 9l.54 9.176A3 3 0 006.62 21h10.757a3 3 0 002.995-2.824L20.913 9H3.087zM12 10.5a.75.75 0 01.75.75v4.94l1.72-1.72a.75.75 0 111.06 1.06l-3 3a.75.75 0 01-1.06 0l-3-3a.75.75 0 111.06-1.06l1.72 1.72v-4.94a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArchiveBoxArrowDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArchiveBoxIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArchiveBoxIcon;
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArchiveBoxIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3H3.375z"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M3.087 9l.54 9.176A3 3 0 006.62 21h10.757a3 3 0 002.995-2.824L20.913 9H3.087zm6.163 3.75A.75.75 0 0110 12h4a.75.75 0 010 1.5h-4a.75.75 0 01-.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArchiveBoxIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArchiveBoxXMarkIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArchiveBoxXMarkIcon;
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArchiveBoxXMarkIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3H3.375z"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M3.087 9l.54 9.176A3 3 0 006.62 21h10.757a3 3 0 002.995-2.824L20.913 9H3.087zm6.133 2.845a.75.75 0 011.06 0l1.72 1.72 1.72-1.72a.75.75 0 111.06 1.06l-1.72 1.72 1.72 1.72a.75.75 0 11-1.06 1.06L12 15.685l-1.72 1.72a.75.75 0 11-1.06-1.06l1.72-1.72-1.72-1.72a.75.75 0 010-1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArchiveBoxXMarkIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownCircleIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownCircleIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownCircleIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm-.53 14.03a.75.75 0 001.06 0l3-3a.75.75 0 10-1.06-1.06l-1.72 1.72V8.25a.75.75 0 00-1.5 0v5.69l-1.72-1.72a.75.75 0 00-1.06 1.06l3 3z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownCircleIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25a.75.75 0 01.75.75v16.19l6.22-6.22a.75.75 0 111.06 1.06l-7.5 7.5a.75.75 0 01-1.06 0l-7.5-7.5a.75.75 0 111.06-1.06l6.22 6.22V3a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M20.03 3.97a.75.75 0 010 1.06L6.31 18.75h9.44a.75.75 0 010 1.5H4.5a.75.75 0 01-.75-.75V8.25a.75.75 0 011.5 0v9.44L18.97 3.97a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownOnSquareIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownOnSquareIcon;
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownOnSquareIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M12 1.5a.75.75 0 01.75.75V7.5h-1.5V2.25A.75.75 0 0112 1.5zM11.25 7.5v5.69l-1.72-1.72a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l3-3a.75.75 0 10-1.06-1.06l-1.72 1.72V7.5h3.75a3 3 0 013 3v9a3 3 0 01-3 3h-9a3 3 0 01-3-3v-9a3 3 0 013-3h3.75z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownOnSquareIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownOnSquareStackIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownOnSquareStackIcon;
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownOnSquareStackIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M9.75 6.75h-3a3 3 0 00-3 3v7.5a3 3 0 003 3h7.5a3 3 0 003-3v-7.5a3 3 0 00-3-3h-3V1.5a.75.75 0 00-1.5 0v5.25zm0 0h1.5v5.69l1.72-1.72a.75.75 0 111.06 1.06l-3 3a.75.75 0 01-1.06 0l-3-3a.75.75 0 111.06-1.06l1.72 1.72V6.75z",
|
||||
clipRule: "evenodd"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
d: "M7.151 21.75a2.999 2.999 0 002.599 1.5h7.5a3 3 0 003-3v-7.5c0-1.11-.603-2.08-1.5-2.599v7.099a4.5 4.5 0 01-4.5 4.5H7.151z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownOnSquareStackIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownRightIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownRightIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownRightIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M3.97 3.97a.75.75 0 011.06 0l13.72 13.72V8.25a.75.75 0 011.5 0V19.5a.75.75 0 01-.75.75H8.25a.75.75 0 010-1.5h9.44L3.97 5.03a.75.75 0 010-1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownRightIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowDownTrayIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowDownTrayIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowDownTrayIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25a.75.75 0 01.75.75v11.69l3.22-3.22a.75.75 0 111.06 1.06l-4.5 4.5a.75.75 0 01-1.06 0l-4.5-4.5a.75.75 0 111.06-1.06l3.22 3.22V3a.75.75 0 01.75-.75zm-9 13.5a.75.75 0 01.75.75v2.25a1.5 1.5 0 001.5 1.5h13.5a1.5 1.5 0 001.5-1.5V16.5a.75.75 0 011.5 0v2.25a3 3 0 01-3 3H5.25a3 3 0 01-3-3V16.5a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowDownTrayIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLeftCircleIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLeftCircleIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLeftCircleIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm-4.28 9.22a.75.75 0 000 1.06l3 3a.75.75 0 101.06-1.06l-1.72-1.72h5.69a.75.75 0 000-1.5h-5.69l1.72-1.72a.75.75 0 00-1.06-1.06l-3 3z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLeftCircleIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M11.03 3.97a.75.75 0 010 1.06l-6.22 6.22H21a.75.75 0 010 1.5H4.81l6.22 6.22a.75.75 0 11-1.06 1.06l-7.5-7.5a.75.75 0 010-1.06l7.5-7.5a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLeftOnRectangleIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLeftOnRectangleIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLeftOnRectangleIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M7.5 3.75A1.5 1.5 0 006 5.25v13.5a1.5 1.5 0 001.5 1.5h6a1.5 1.5 0 001.5-1.5V15a.75.75 0 011.5 0v3.75a3 3 0 01-3 3h-6a3 3 0 01-3-3V5.25a3 3 0 013-3h6a3 3 0 013 3V9A.75.75 0 0115 9V5.25a1.5 1.5 0 00-1.5-1.5h-6zm5.03 4.72a.75.75 0 010 1.06l-1.72 1.72h10.94a.75.75 0 010 1.5H10.81l1.72 1.72a.75.75 0 11-1.06 1.06l-3-3a.75.75 0 010-1.06l3-3a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLeftOnRectangleIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLongDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLongDownIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLongDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25a.75.75 0 01.75.75v16.19l2.47-2.47a.75.75 0 111.06 1.06l-3.75 3.75a.75.75 0 01-1.06 0l-3.75-3.75a.75.75 0 111.06-1.06l2.47 2.47V3a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLongDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLongLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLongLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLongLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M7.28 7.72a.75.75 0 010 1.06l-2.47 2.47H21a.75.75 0 010 1.5H4.81l2.47 2.47a.75.75 0 11-1.06 1.06l-3.75-3.75a.75.75 0 010-1.06l3.75-3.75a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLongLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLongRightIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLongRightIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLongRightIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M16.72 7.72a.75.75 0 011.06 0l3.75 3.75a.75.75 0 010 1.06l-3.75 3.75a.75.75 0 11-1.06-1.06l2.47-2.47H3a.75.75 0 010-1.5h16.19l-2.47-2.47a.75.75 0 010-1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLongRightIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowLongUpIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowLongUpIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowLongUpIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M11.47 2.47a.75.75 0 011.06 0l3.75 3.75a.75.75 0 01-1.06 1.06l-2.47-2.47V21a.75.75 0 01-1.5 0V4.81L8.78 7.28a.75.75 0 01-1.06-1.06l3.75-3.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowLongUpIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowPathIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowPathIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowPathIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M4.755 10.059a7.5 7.5 0 0112.548-3.364l1.903 1.903h-3.183a.75.75 0 100 1.5h4.992a.75.75 0 00.75-.75V4.356a.75.75 0 00-1.5 0v3.18l-1.9-1.9A9 9 0 003.306 9.67a.75.75 0 101.45.388zm15.408 3.352a.75.75 0 00-.919.53 7.5 7.5 0 01-12.548 3.364l-1.902-1.903h3.183a.75.75 0 000-1.5H2.984a.75.75 0 00-.75.75v4.992a.75.75 0 001.5 0v-3.18l1.9 1.9a9 9 0 0015.059-4.035.75.75 0 00-.53-.918z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowPathIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowPathRoundedSquareIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowPathRoundedSquareIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowPathRoundedSquareIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 5.25c1.213 0 2.415.046 3.605.135a3.256 3.256 0 013.01 3.01c.044.583.077 1.17.1 1.759L17.03 8.47a.75.75 0 10-1.06 1.06l3 3a.75.75 0 001.06 0l3-3a.75.75 0 00-1.06-1.06l-1.752 1.751c-.023-.65-.06-1.296-.108-1.939a4.756 4.756 0 00-4.392-4.392 49.422 49.422 0 00-7.436 0A4.756 4.756 0 003.89 8.282c-.017.224-.033.447-.046.672a.75.75 0 101.497.092c.013-.217.028-.434.044-.651a3.256 3.256 0 013.01-3.01c1.19-.09 2.392-.135 3.605-.135zm-6.97 6.22a.75.75 0 00-1.06 0l-3 3a.75.75 0 101.06 1.06l1.752-1.751c.023.65.06 1.296.108 1.939a4.756 4.756 0 004.392 4.392 49.413 49.413 0 007.436 0 4.756 4.756 0 004.392-4.392c.017-.223.032-.447.046-.672a.75.75 0 00-1.497-.092c-.013.217-.028.434-.044.651a3.256 3.256 0 01-3.01 3.01 47.953 47.953 0 01-7.21 0 3.256 3.256 0 01-3.01-3.01 47.759 47.759 0 01-.1-1.759L6.97 15.53a.75.75 0 001.06-1.06l-3-3z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowPathRoundedSquareIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowRightCircleIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowRightCircleIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowRightCircleIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm4.28 10.28a.75.75 0 000-1.06l-3-3a.75.75 0 10-1.06 1.06l1.72 1.72H8.25a.75.75 0 000 1.5h5.69l-1.72 1.72a.75.75 0 101.06 1.06l3-3z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowRightCircleIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowRightIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowRightIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowRightIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12.97 3.97a.75.75 0 011.06 0l7.5 7.5a.75.75 0 010 1.06l-7.5 7.5a.75.75 0 11-1.06-1.06l6.22-6.22H3a.75.75 0 010-1.5h16.19l-6.22-6.22a.75.75 0 010-1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowRightIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowRightOnRectangleIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowRightOnRectangleIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowRightOnRectangleIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M7.5 3.75A1.5 1.5 0 006 5.25v13.5a1.5 1.5 0 001.5 1.5h6a1.5 1.5 0 001.5-1.5V15a.75.75 0 011.5 0v3.75a3 3 0 01-3 3h-6a3 3 0 01-3-3V5.25a3 3 0 013-3h6a3 3 0 013 3V9A.75.75 0 0115 9V5.25a1.5 1.5 0 00-1.5-1.5h-6zm10.72 4.72a.75.75 0 011.06 0l3 3a.75.75 0 010 1.06l-3 3a.75.75 0 11-1.06-1.06l1.72-1.72H9a.75.75 0 010-1.5h10.94l-1.72-1.72a.75.75 0 010-1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowRightOnRectangleIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowSmallDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowSmallDownIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowSmallDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 3.75a.75.75 0 01.75.75v13.19l5.47-5.47a.75.75 0 111.06 1.06l-6.75 6.75a.75.75 0 01-1.06 0l-6.75-6.75a.75.75 0 111.06-1.06l5.47 5.47V4.5a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowSmallDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowSmallLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowSmallLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowSmallLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M20.25 12a.75.75 0 01-.75.75H6.31l5.47 5.47a.75.75 0 11-1.06 1.06l-6.75-6.75a.75.75 0 010-1.06l6.75-6.75a.75.75 0 111.06 1.06l-5.47 5.47H19.5a.75.75 0 01.75.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowSmallLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowSmallRightIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowSmallRightIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowSmallRightIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M3.75 12a.75.75 0 01.75-.75h13.19l-5.47-5.47a.75.75 0 011.06-1.06l6.75 6.75a.75.75 0 010 1.06l-6.75 6.75a.75.75 0 11-1.06-1.06l5.47-5.47H4.5a.75.75 0 01-.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowSmallRightIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowSmallUpIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowSmallUpIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowSmallUpIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 20.25a.75.75 0 01-.75-.75V6.31l-5.47 5.47a.75.75 0 01-1.06-1.06l6.75-6.75a.75.75 0 011.06 0l6.75 6.75a.75.75 0 11-1.06 1.06l-5.47-5.47V19.5a.75.75 0 01-.75.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowSmallUpIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowTopRightOnSquareIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowTopRightOnSquareIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowTopRightOnSquareIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M15.75 2.25H21a.75.75 0 01.75.75v5.25a.75.75 0 01-1.5 0V4.81L8.03 17.03a.75.75 0 01-1.06-1.06L19.19 3.75h-3.44a.75.75 0 010-1.5zm-10.5 4.5a1.5 1.5 0 00-1.5 1.5v10.5a1.5 1.5 0 001.5 1.5h10.5a1.5 1.5 0 001.5-1.5V10.5a.75.75 0 011.5 0v8.25a3 3 0 01-3 3H5.25a3 3 0 01-3-3V8.25a3 3 0 013-3h8.25a.75.75 0 010 1.5H5.25z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowTopRightOnSquareIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowTrendingDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowTrendingDownIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowTrendingDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M1.72 5.47a.75.75 0 011.06 0L9 11.69l3.756-3.756a.75.75 0 01.985-.066 12.698 12.698 0 014.575 6.832l.308 1.149 2.277-3.943a.75.75 0 111.299.75l-3.182 5.51a.75.75 0 01-1.025.275l-5.511-3.181a.75.75 0 01.75-1.3l3.943 2.277-.308-1.149a11.194 11.194 0 00-3.528-5.617l-3.809 3.81a.75.75 0 01-1.06 0L1.72 6.53a.75.75 0 010-1.061z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowTrendingDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowTrendingUpIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowTrendingUpIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowTrendingUpIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M15.22 6.268a.75.75 0 01.968-.432l5.942 2.28a.75.75 0 01.431.97l-2.28 5.941a.75.75 0 11-1.4-.537l1.63-4.251-1.086.483a11.2 11.2 0 00-5.45 5.174.75.75 0 01-1.199.19L9 12.31l-6.22 6.22a.75.75 0 11-1.06-1.06l6.75-6.75a.75.75 0 011.06 0l3.606 3.605a12.694 12.694 0 015.68-4.973l1.086-.484-4.251-1.631a.75.75 0 01-.432-.97z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowTrendingUpIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpCircleIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpCircleIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpCircleIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm.53 5.47a.75.75 0 00-1.06 0l-3 3a.75.75 0 101.06 1.06l1.72-1.72v5.69a.75.75 0 001.5 0v-5.69l1.72 1.72a.75.75 0 101.06-1.06l-3-3z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpCircleIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M11.47 2.47a.75.75 0 011.06 0l7.5 7.5a.75.75 0 11-1.06 1.06l-6.22-6.22V21a.75.75 0 01-1.5 0V4.81l-6.22 6.22a.75.75 0 11-1.06-1.06l7.5-7.5z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M5.25 6.31v9.44a.75.75 0 01-1.5 0V4.5a.75.75 0 01.75-.75h11.25a.75.75 0 010 1.5H6.31l13.72 13.72a.75.75 0 11-1.06 1.06L5.25 6.31z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpOnSquareIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpOnSquareIcon;
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpOnSquareIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M11.47 1.72a.75.75 0 011.06 0l3 3a.75.75 0 01-1.06 1.06l-1.72-1.72V7.5h-1.5V4.06L9.53 5.78a.75.75 0 01-1.06-1.06l3-3zM11.25 7.5V15a.75.75 0 001.5 0V7.5h3.75a3 3 0 013 3v9a3 3 0 01-3 3h-9a3 3 0 01-3-3v-9a3 3 0 013-3h3.75z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpOnSquareIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpOnSquareStackIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpOnSquareStackIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpOnSquareStackIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M9.97.97a.75.75 0 011.06 0l3 3a.75.75 0 01-1.06 1.06l-1.72-1.72v3.44h-1.5V3.31L8.03 5.03a.75.75 0 01-1.06-1.06l3-3zM9.75 6.75v6a.75.75 0 001.5 0v-6h3a3 3 0 013 3v7.5a3 3 0 01-3 3h-7.5a3 3 0 01-3-3v-7.5a3 3 0 013-3h3z"
|
||||
}), /*#__PURE__*/React.createElement("path", {
|
||||
d: "M7.151 21.75a2.999 2.999 0 002.599 1.5h7.5a3 3 0 003-3v-7.5c0-1.11-.603-2.08-1.5-2.599v7.099a4.5 4.5 0 01-4.5 4.5H7.151z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpOnSquareStackIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpRightIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpRightIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpRightIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M8.25 3.75H19.5a.75.75 0 01.75.75v11.25a.75.75 0 01-1.5 0V6.31L5.03 20.03a.75.75 0 01-1.06-1.06L17.69 5.25H8.25a.75.75 0 010-1.5z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpRightIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUpTrayIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUpTrayIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUpTrayIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M11.47 2.47a.75.75 0 011.06 0l4.5 4.5a.75.75 0 01-1.06 1.06l-3.22-3.22V16.5a.75.75 0 01-1.5 0V4.81L8.03 8.03a.75.75 0 01-1.06-1.06l4.5-4.5zM3 15.75a.75.75 0 01.75.75v2.25a1.5 1.5 0 001.5 1.5h13.5a1.5 1.5 0 001.5-1.5V16.5a.75.75 0 011.5 0v2.25a3 3 0 01-3 3H5.25a3 3 0 01-3-3V16.5a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUpTrayIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUturnDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUturnDownIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUturnDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M15 3.75A5.25 5.25 0 009.75 9v10.19l4.72-4.72a.75.75 0 111.06 1.06l-6 6a.75.75 0 01-1.06 0l-6-6a.75.75 0 111.06-1.06l4.72 4.72V9a6.75 6.75 0 0113.5 0v3a.75.75 0 01-1.5 0V9c0-2.9-2.35-5.25-5.25-5.25z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUturnDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUturnLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUturnLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUturnLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M9.53 2.47a.75.75 0 010 1.06L4.81 8.25H15a6.75 6.75 0 010 13.5h-3a.75.75 0 010-1.5h3a5.25 5.25 0 100-10.5H4.81l4.72 4.72a.75.75 0 11-1.06 1.06l-6-6a.75.75 0 010-1.06l6-6a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUturnLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUturnRightIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUturnRightIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUturnRightIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M14.47 2.47a.75.75 0 011.06 0l6 6a.75.75 0 010 1.06l-6 6a.75.75 0 11-1.06-1.06l4.72-4.72H9a5.25 5.25 0 100 10.5h3a.75.75 0 010 1.5H9a6.75 6.75 0 010-13.5h10.19l-4.72-4.72a.75.75 0 010-1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUturnRightIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowUturnUpIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowUturnUpIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowUturnUpIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M21.53 9.53a.75.75 0 01-1.06 0l-4.72-4.72V15a6.75 6.75 0 01-13.5 0v-3a.75.75 0 011.5 0v3a5.25 5.25 0 1010.5 0V4.81L9.53 9.53a.75.75 0 01-1.06-1.06l6-6a.75.75 0 011.06 0l6 6a.75.75 0 010 1.06z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowUturnUpIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowsPointingInIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowsPointingInIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowsPointingInIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M3.22 3.22a.75.75 0 011.06 0l3.97 3.97V4.5a.75.75 0 011.5 0V9a.75.75 0 01-.75.75H4.5a.75.75 0 010-1.5h2.69L3.22 4.28a.75.75 0 010-1.06zm17.56 0a.75.75 0 010 1.06l-3.97 3.97h2.69a.75.75 0 010 1.5H15a.75.75 0 01-.75-.75V4.5a.75.75 0 011.5 0v2.69l3.97-3.97a.75.75 0 011.06 0zM3.75 15a.75.75 0 01.75-.75H9a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-2.69l-3.97 3.97a.75.75 0 01-1.06-1.06l3.97-3.97H4.5a.75.75 0 01-.75-.75zm10.5 0a.75.75 0 01.75-.75h4.5a.75.75 0 010 1.5h-2.69l3.97 3.97a.75.75 0 11-1.06 1.06l-3.97-3.97v2.69a.75.75 0 01-1.5 0V15z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowsPointingInIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowsPointingOutIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowsPointingOutIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowsPointingOutIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M15 3.75a.75.75 0 01.75-.75h4.5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0V5.56l-3.97 3.97a.75.75 0 11-1.06-1.06l3.97-3.97h-2.69a.75.75 0 01-.75-.75zm-12 0A.75.75 0 013.75 3h4.5a.75.75 0 010 1.5H5.56l3.97 3.97a.75.75 0 01-1.06 1.06L4.5 5.56v2.69a.75.75 0 01-1.5 0v-4.5zm11.47 11.78a.75.75 0 111.06-1.06l3.97 3.97v-2.69a.75.75 0 011.5 0v4.5a.75.75 0 01-.75.75h-4.5a.75.75 0 010-1.5h2.69l-3.97-3.97zm-4.94-1.06a.75.75 0 010 1.06L5.56 19.5h2.69a.75.75 0 010 1.5h-4.5a.75.75 0 01-.75-.75v-4.5a.75.75 0 011.5 0v2.69l3.97-3.97a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowsPointingOutIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowsRightLeftIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowsRightLeftIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowsRightLeftIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M15.97 2.47a.75.75 0 011.06 0l4.5 4.5a.75.75 0 010 1.06l-4.5 4.5a.75.75 0 11-1.06-1.06l3.22-3.22H7.5a.75.75 0 010-1.5h11.69l-3.22-3.22a.75.75 0 010-1.06zm-7.94 9a.75.75 0 010 1.06l-3.22 3.22H16.5a.75.75 0 010 1.5H4.81l3.22 3.22a.75.75 0 11-1.06 1.06l-4.5-4.5a.75.75 0 010-1.06l4.5-4.5a.75.75 0 011.06 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowsRightLeftIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function ArrowsUpDownIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default ArrowsUpDownIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function ArrowsUpDownIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M6.97 2.47a.75.75 0 011.06 0l4.5 4.5a.75.75 0 01-1.06 1.06L8.25 4.81V16.5a.75.75 0 01-1.5 0V4.81L3.53 8.03a.75.75 0 01-1.06-1.06l4.5-4.5zm9.53 4.28a.75.75 0 01.75.75v11.69l3.22-3.22a.75.75 0 111.06 1.06l-4.5 4.5a.75.75 0 01-1.06 0l-4.5-4.5a.75.75 0 111.06-1.06l3.22 3.22V7.5a.75.75 0 01.75-.75z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(ArrowsUpDownIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function AtSymbolIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default AtSymbolIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function AtSymbolIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M17.834 6.166a8.25 8.25 0 100 11.668.75.75 0 011.06 1.06c-3.807 3.808-9.98 3.808-13.788 0-3.808-3.807-3.808-9.98 0-13.788 3.807-3.808 9.98-3.808 13.788 0A9.722 9.722 0 0121.75 12c0 .975-.296 1.887-.809 2.571-.514.685-1.28 1.179-2.191 1.179-.904 0-1.666-.487-2.18-1.164a5.25 5.25 0 11-.82-6.26V8.25a.75.75 0 011.5 0V12c0 .682.208 1.27.509 1.671.3.401.659.579.991.579.332 0 .69-.178.991-.579.3-.4.509-.99.509-1.671a8.222 8.222 0 00-2.416-5.834zM15.75 12a3.75 3.75 0 10-7.5 0 3.75 3.75 0 007.5 0z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(AtSymbolIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function BackspaceIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default BackspaceIcon;
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
const React = require("react");
|
||||
|
||||
function BackspaceIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
fillRule: "evenodd",
|
||||
d: "M2.515 10.674a1.875 1.875 0 000 2.652L8.89 19.7c.352.351.829.549 1.326.549H19.5a3 3 0 003-3V6.75a3 3 0 00-3-3h-9.284c-.497 0-.974.198-1.326.55l-6.375 6.374zM12.53 9.22a.75.75 0 10-1.06 1.06L13.19 12l-1.72 1.72a.75.75 0 101.06 1.06l1.72-1.72 1.72 1.72a.75.75 0 101.06-1.06L15.31 12l1.72-1.72a.75.75 0 10-1.06-1.06l-1.72 1.72-1.72-1.72z",
|
||||
clipRule: "evenodd"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(BackspaceIcon);
|
||||
module.exports = ForwardRef;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import * as React from 'react';
|
||||
declare function BackwardIcon(props: React.ComponentProps<'svg'> & { title?: string, titleId?: string }): JSX.Element;
|
||||
export default BackwardIcon;
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
const React = require("react");
|
||||
|
||||
function BackwardIcon({
|
||||
title,
|
||||
titleId,
|
||||
...props
|
||||
}, svgRef) {
|
||||
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 24 24",
|
||||
fill: "currentColor",
|
||||
"aria-hidden": "true",
|
||||
ref: svgRef,
|
||||
"aria-labelledby": titleId
|
||||
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||||
id: titleId
|
||||
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||||
d: "M9.195 18.44c1.25.713 2.805-.19 2.805-1.629v-2.34l6.945 3.968c1.25.714 2.805-.188 2.805-1.628V8.688c0-1.44-1.555-2.342-2.805-1.628L12 11.03v-2.34c0-1.44-1.555-2.343-2.805-1.629l-7.108 4.062c-1.26.72-1.26 2.536 0 3.256l7.108 4.061z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(BackwardIcon);
|
||||
module.exports = ForwardRef;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user