@vellira-ui/icons 2.41.0 → 2.43.0
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/generated/ArrowLeftRight.native.d.ts +8 -0
- package/dist/generated/ArrowLeftRight.native.d.ts.map +1 -0
- package/dist/generated/ArrowLeftRight.native.js +5 -0
- package/dist/generated/ArrowLeftRight.native.js.map +1 -0
- package/dist/generated/ArrowLeftRight.web.d.ts +8 -0
- package/dist/generated/ArrowLeftRight.web.d.ts.map +1 -0
- package/dist/generated/ArrowLeftRight.web.js +4 -0
- package/dist/generated/ArrowLeftRight.web.js.map +1 -0
- package/dist/generated/ArrowTopButton.native.d.ts +8 -0
- package/dist/generated/ArrowTopButton.native.d.ts.map +1 -0
- package/dist/generated/ArrowTopButton.native.js +5 -0
- package/dist/generated/ArrowTopButton.native.js.map +1 -0
- package/dist/generated/ArrowTopButton.web.d.ts +8 -0
- package/dist/generated/ArrowTopButton.web.d.ts.map +1 -0
- package/dist/generated/ArrowTopButton.web.js +4 -0
- package/dist/generated/ArrowTopButton.web.js.map +1 -0
- package/dist/generated/Contrast.native.d.ts +8 -0
- package/dist/generated/Contrast.native.d.ts.map +1 -0
- package/dist/generated/Contrast.native.js +5 -0
- package/dist/generated/Contrast.native.js.map +1 -0
- package/dist/generated/Contrast.web.d.ts +8 -0
- package/dist/generated/Contrast.web.d.ts.map +1 -0
- package/dist/generated/Contrast.web.js +4 -0
- package/dist/generated/Contrast.web.js.map +1 -0
- package/dist/generated/Moon.native.d.ts +8 -0
- package/dist/generated/Moon.native.d.ts.map +1 -0
- package/dist/generated/Moon.native.js +5 -0
- package/dist/generated/Moon.native.js.map +1 -0
- package/dist/generated/Moon.web.d.ts +8 -0
- package/dist/generated/Moon.web.d.ts.map +1 -0
- package/dist/generated/Moon.web.js +4 -0
- package/dist/generated/Moon.web.js.map +1 -0
- package/dist/generated/MoreHorizontal.native.js +1 -1
- package/dist/generated/MoreHorizontal.native.js.map +1 -1
- package/dist/generated/MoreHorizontal.web.js +1 -1
- package/dist/generated/MoreHorizontal.web.js.map +1 -1
- package/dist/generated/MoreVertical.native.js +1 -1
- package/dist/generated/MoreVertical.native.js.map +1 -1
- package/dist/generated/MoreVertical.web.js +1 -1
- package/dist/generated/MoreVertical.web.js.map +1 -1
- package/dist/generated/Sun.native.d.ts +8 -0
- package/dist/generated/Sun.native.d.ts.map +1 -0
- package/dist/generated/Sun.native.js +5 -0
- package/dist/generated/Sun.native.js.map +1 -0
- package/dist/generated/Sun.web.d.ts +8 -0
- package/dist/generated/Sun.web.d.ts.map +1 -0
- package/dist/generated/Sun.web.js +4 -0
- package/dist/generated/Sun.web.js.map +1 -0
- package/dist/generated/System.native.d.ts +8 -0
- package/dist/generated/System.native.d.ts.map +1 -0
- package/dist/generated/System.native.js +5 -0
- package/dist/generated/System.native.js.map +1 -0
- package/dist/generated/System.web.d.ts +8 -0
- package/dist/generated/System.web.d.ts.map +1 -0
- package/dist/generated/System.web.js +4 -0
- package/dist/generated/System.web.js.map +1 -0
- package/dist/lottie.d.ts +1933 -866
- package/dist/lottie.d.ts.map +1 -1
- package/dist/lottie.js +8197 -6617
- package/dist/lottie.js.map +1 -1
- package/dist/native.d.ts +6 -0
- package/dist/native.d.ts.map +1 -1
- package/dist/native.js +6 -0
- package/dist/native.js.map +1 -1
- package/dist/web.d.ts +6 -0
- package/dist/web.d.ts.map +1 -1
- package/dist/web.js +6 -0
- package/dist/web.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SvgProps } from 'react-native-svg';
|
|
2
|
+
type IconProps = SvgProps & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const ArrowLeftRight: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default ArrowLeftRight;
|
|
8
|
+
//# sourceMappingURL=ArrowLeftRight.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftRight.native.d.ts","sourceRoot":"","sources":["../../src/generated/ArrowLeftRight.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,KAAK,SAAS,GAAG,QAAQ,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,cAAc,GAAI,2BAIrB,SAAS,gCAOX,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const ArrowLeftRight = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M14.9847 6.19315C15.3819 5.88252 15.9544 5.95418 16.2635 6.35329L19.8081 10.9369C20.064 11.2679 20.064 11.7319 19.8081 12.0629L16.2635 16.6466C15.9544 17.0459 15.382 17.1175 14.9847 16.8067C14.5879 16.4958 14.5166 15.92 14.8255 15.5206L17.2258 12.4171H6.77415L9.17443 15.5206C9.48338 15.9201 9.4122 16.4958 9.0152 16.8067C8.61797 17.1175 8.04555 17.0459 7.73644 16.6466L4.1919 12.0629C3.9361 11.7319 3.93597 11.2679 4.1919 10.9369L7.73644 6.35329C8.04551 5.95413 8.61802 5.88263 9.0152 6.19315C9.41221 6.50401 9.48329 7.07978 9.17443 7.47931L6.77415 10.5828H17.2258L14.8255 7.47931C14.5168 7.07979 14.5878 6.50398 14.9847 6.19315Z', fill: color }) }));
|
|
4
|
+
export default ArrowLeftRight;
|
|
5
|
+
//# sourceMappingURL=ArrowLeftRight.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftRight.native.js","sourceRoot":"","sources":["../../src/generated/ArrowLeftRight.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,wnBAAwnB,EAC1nB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const ArrowLeftRight: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default ArrowLeftRight;
|
|
8
|
+
//# sourceMappingURL=ArrowLeftRight.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftRight.web.d.ts","sourceRoot":"","sources":["../../src/generated/ArrowLeftRight.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,KAAK,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,cAAc,GAAI,2BAIrB,SAAS,gCAcX,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const ArrowLeftRight = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M14.9847 6.19315C15.3819 5.88252 15.9544 5.95418 16.2635 6.35329L19.8081 10.9369C20.064 11.2679 20.064 11.7319 19.8081 12.0629L16.2635 16.6466C15.9544 17.0459 15.382 17.1175 14.9847 16.8067C14.5879 16.4958 14.5166 15.92 14.8255 15.5206L17.2258 12.4171H6.77415L9.17443 15.5206C9.48338 15.9201 9.4122 16.4958 9.0152 16.8067C8.61797 17.1175 8.04555 17.0459 7.73644 16.6466L4.1919 12.0629C3.9361 11.7319 3.93597 11.2679 4.1919 10.9369L7.73644 6.35329C8.04551 5.95413 8.61802 5.88263 9.0152 6.19315C9.41221 6.50401 9.48329 7.07978 9.17443 7.47931L6.77415 10.5828H17.2258L14.8255 7.47931C14.5168 7.07979 14.5878 6.50398 14.9847 6.19315Z', fill: color }) }));
|
|
3
|
+
export default ArrowLeftRight;
|
|
4
|
+
//# sourceMappingURL=ArrowLeftRight.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftRight.web.js","sourceRoot":"","sources":["../../src/generated/ArrowLeftRight.web.tsx"],"names":[],"mappings":";AAMA,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,wnBAAwnB,EAC1nB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SvgProps } from 'react-native-svg';
|
|
2
|
+
type IconProps = SvgProps & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const ArrowTopButton: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default ArrowTopButton;
|
|
8
|
+
//# sourceMappingURL=ArrowTopButton.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowTopButton.native.d.ts","sourceRoot":"","sources":["../../src/generated/ArrowTopButton.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,KAAK,SAAS,GAAG,QAAQ,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,cAAc,GAAI,2BAIrB,SAAS,gCAOX,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const ArrowTopButton = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M6.69315 8.51525C6.38252 8.1181 6.45418 7.54563 6.85329 7.23649L11.4369 3.69195C11.7679 3.43599 12.2319 3.43605 12.5629 3.69195L17.1466 7.23649C17.5459 7.5456 17.6175 8.11802 17.3067 8.51525C16.9958 8.91211 16.42 8.98338 16.0206 8.67448L12.9171 6.2742V16.7258L16.0206 14.3256C16.4201 14.0166 16.9958 14.0878 17.3067 14.4848C17.6175 14.882 17.5459 15.4545 17.1466 15.7636L12.5629 19.3081C12.2319 19.5639 11.7679 19.564 11.4369 19.3081L6.85329 15.7636C6.45413 15.4545 6.38263 14.882 6.69315 14.4848C7.00401 14.0878 7.57978 14.0167 7.97931 14.3256L11.0828 16.7258V6.2742L7.97931 8.67448C7.57979 8.98323 7.00398 8.91222 6.69315 8.51525Z', fill: color }) }));
|
|
4
|
+
export default ArrowTopButton;
|
|
5
|
+
//# sourceMappingURL=ArrowTopButton.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowTopButton.native.js","sourceRoot":"","sources":["../../src/generated/ArrowTopButton.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,0nBAA0nB,EAC5nB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const ArrowTopButton: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default ArrowTopButton;
|
|
8
|
+
//# sourceMappingURL=ArrowTopButton.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowTopButton.web.d.ts","sourceRoot":"","sources":["../../src/generated/ArrowTopButton.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,KAAK,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,cAAc,GAAI,2BAIrB,SAAS,gCAcX,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const ArrowTopButton = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M6.69315 8.51525C6.38252 8.1181 6.45418 7.54563 6.85329 7.23649L11.4369 3.69195C11.7679 3.43599 12.2319 3.43605 12.5629 3.69195L17.1466 7.23649C17.5459 7.5456 17.6175 8.11802 17.3067 8.51525C16.9958 8.91211 16.42 8.98338 16.0206 8.67448L12.9171 6.2742V16.7258L16.0206 14.3256C16.4201 14.0166 16.9958 14.0878 17.3067 14.4848C17.6175 14.882 17.5459 15.4545 17.1466 15.7636L12.5629 19.3081C12.2319 19.5639 11.7679 19.564 11.4369 19.3081L6.85329 15.7636C6.45413 15.4545 6.38263 14.882 6.69315 14.4848C7.00401 14.0878 7.57978 14.0167 7.97931 14.3256L11.0828 16.7258V6.2742L7.97931 8.67448C7.57979 8.98323 7.00398 8.91222 6.69315 8.51525Z', fill: color }) }));
|
|
3
|
+
export default ArrowTopButton;
|
|
4
|
+
//# sourceMappingURL=ArrowTopButton.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowTopButton.web.js","sourceRoot":"","sources":["../../src/generated/ArrowTopButton.web.tsx"],"names":[],"mappings":";AAMA,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,0nBAA0nB,EAC5nB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SvgProps } from 'react-native-svg';
|
|
2
|
+
type IconProps = SvgProps & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Contrast: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default Contrast;
|
|
8
|
+
//# sourceMappingURL=Contrast.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Contrast.native.d.ts","sourceRoot":"","sources":["../../src/generated/Contrast.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,KAAK,SAAS,GAAG,QAAQ,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,QAAQ,GAAI,2BAIf,SAAS,gCAOX,CAAC;AACF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const Contrast = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3ZM12 4.61982C7.92414 4.61982 4.61982 7.92414 4.61982 12C4.61982 16.0759 7.92414 19.3802 12 19.3802C16.0759 19.3802 19.3802 16.0759 19.3802 12C19.3802 7.92414 16.0759 4.61982 12 4.61982ZM12 6.6C14.9823 6.6 17.4 9.01766 17.4 12C17.4 14.9823 14.9823 17.4 12 17.4C9.01766 17.4 6.6 14.9823 6.6 12C6.6 9.01766 9.01766 6.6 12 6.6Z', fill: color }) }));
|
|
4
|
+
export default Contrast;
|
|
5
|
+
//# sourceMappingURL=Contrast.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Contrast.native.js","sourceRoot":"","sources":["../../src/generated/Contrast.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,QAAQ,GAAG,CAAC,EAChB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,obAAob,EACtb,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Contrast: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default Contrast;
|
|
8
|
+
//# sourceMappingURL=Contrast.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Contrast.web.d.ts","sourceRoot":"","sources":["../../src/generated/Contrast.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,KAAK,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,QAAQ,GAAI,2BAIf,SAAS,gCAcX,CAAC;AACF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Contrast = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3ZM12 4.61982C7.92414 4.61982 4.61982 7.92414 4.61982 12C4.61982 16.0759 7.92414 19.3802 12 19.3802C16.0759 19.3802 19.3802 16.0759 19.3802 12C19.3802 7.92414 16.0759 4.61982 12 4.61982ZM12 6.6C14.9823 6.6 17.4 9.01766 17.4 12C17.4 14.9823 14.9823 17.4 12 17.4C9.01766 17.4 6.6 14.9823 6.6 12C6.6 9.01766 9.01766 6.6 12 6.6Z', fill: color }) }));
|
|
3
|
+
export default Contrast;
|
|
4
|
+
//# sourceMappingURL=Contrast.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Contrast.web.js","sourceRoot":"","sources":["../../src/generated/Contrast.web.tsx"],"names":[],"mappings":";AAMA,MAAM,QAAQ,GAAG,CAAC,EAChB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,obAAob,EACtb,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SvgProps } from 'react-native-svg';
|
|
2
|
+
type IconProps = SvgProps & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Moon: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default Moon;
|
|
8
|
+
//# sourceMappingURL=Moon.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Moon.native.d.ts","sourceRoot":"","sources":["../../src/generated/Moon.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,KAAK,SAAS,GAAG,QAAQ,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,IAAI,GAAI,2BAAiD,SAAS,gCAOvE,CAAC;AACF,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const Moon = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M9.71105 3C8.86111 4.37231 8.37219 5.97218 8.37219 7.68134C8.37219 12.7737 12.7016 16.902 18.0421 16.902C19.074 16.902 20.0676 16.7461 21 16.4607C19.3175 19.1769 16.2179 21 12.67 21C7.32938 21 3 16.8718 3 11.7794C3 7.67124 5.81803 4.19201 9.71105 3Z', fill: color }) }));
|
|
4
|
+
export default Moon;
|
|
5
|
+
//# sourceMappingURL=Moon.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Moon.native.js","sourceRoot":"","sources":["../../src/generated/Moon.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,GAAG,cAAc,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE,CAAC,CAC3E,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,2PAA2P,EAC7P,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Moon: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default Moon;
|
|
8
|
+
//# sourceMappingURL=Moon.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Moon.web.d.ts","sourceRoot":"","sources":["../../src/generated/Moon.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,KAAK,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,IAAI,GAAI,2BAAiD,SAAS,gCAcvE,CAAC;AACF,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Moon = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M9.71105 3C8.86111 4.37231 8.37219 5.97218 8.37219 7.68134C8.37219 12.7737 12.7016 16.902 18.0421 16.902C19.074 16.902 20.0676 16.7461 21 16.4607C19.3175 19.1769 16.2179 21 12.67 21C7.32938 21 3 16.8718 3 11.7794C3 7.67124 5.81803 4.19201 9.71105 3Z', fill: color }) }));
|
|
3
|
+
export default Moon;
|
|
4
|
+
//# sourceMappingURL=Moon.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Moon.web.js","sourceRoot":"","sources":["../../src/generated/Moon.web.tsx"],"names":[],"mappings":";AAMA,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,GAAG,cAAc,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE,CAAC,CAC3E,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,2PAA2P,EAC7P,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,IAAI,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
const MoreHorizontal = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M5
|
|
3
|
+
const MoreHorizontal = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M5 10C6.10457 10 7 10.8954 7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10ZM12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10ZM19 10C20.1046 10 21 10.8954 21 12C21 13.1046 20.1046 14 19 14C17.8954 14 17 13.1046 17 12C17 10.8954 17.8954 10 19 10Z', fill: color }) }));
|
|
4
4
|
export default MoreHorizontal;
|
|
5
5
|
//# sourceMappingURL=MoreHorizontal.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MoreHorizontal.native.js","sourceRoot":"","sources":["../../src/generated/MoreHorizontal.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,
|
|
1
|
+
{"version":3,"file":"MoreHorizontal.native.js","sourceRoot":"","sources":["../../src/generated/MoreHorizontal.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,8VAA8V,EAChW,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const MoreHorizontal = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M5
|
|
2
|
+
const MoreHorizontal = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M5 10C6.10457 10 7 10.8954 7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10ZM12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10ZM19 10C20.1046 10 21 10.8954 21 12C21 13.1046 20.1046 14 19 14C17.8954 14 17 13.1046 17 12C17 10.8954 17.8954 10 19 10Z', fill: color }) }));
|
|
3
3
|
export default MoreHorizontal;
|
|
4
4
|
//# sourceMappingURL=MoreHorizontal.web.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MoreHorizontal.web.js","sourceRoot":"","sources":["../../src/generated/MoreHorizontal.web.tsx"],"names":[],"mappings":";AAMA,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,
|
|
1
|
+
{"version":3,"file":"MoreHorizontal.web.js","sourceRoot":"","sources":["../../src/generated/MoreHorizontal.web.tsx"],"names":[],"mappings":";AAMA,MAAM,cAAc,GAAG,CAAC,EACtB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,8VAA8V,EAChW,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,cAAc,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
const MoreVertical = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: '
|
|
3
|
+
const MoreVertical = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M10 19C10 17.8954 10.8954 17 12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19ZM10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12ZM10 5C10 3.89543 10.8954 3 12 3C13.1046 3 14 3.89543 14 5C14 6.10457 13.1046 7 12 7C10.8954 7 10 6.10457 10 5Z', fill: color }) }));
|
|
4
4
|
export default MoreVertical;
|
|
5
5
|
//# sourceMappingURL=MoreVertical.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MoreVertical.native.js","sourceRoot":"","sources":["../../src/generated/MoreVertical.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,YAAY,GAAG,CAAC,EACpB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,
|
|
1
|
+
{"version":3,"file":"MoreVertical.native.js","sourceRoot":"","sources":["../../src/generated/MoreVertical.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,YAAY,GAAG,CAAC,EACpB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,8VAA8V,EAChW,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,YAAY,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const MoreVertical = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: '
|
|
2
|
+
const MoreVertical = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M10 19C10 17.8954 10.8954 17 12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19ZM10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12ZM10 5C10 3.89543 10.8954 3 12 3C13.1046 3 14 3.89543 14 5C14 6.10457 13.1046 7 12 7C10.8954 7 10 6.10457 10 5Z', fill: color }) }));
|
|
3
3
|
export default MoreVertical;
|
|
4
4
|
//# sourceMappingURL=MoreVertical.web.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MoreVertical.web.js","sourceRoot":"","sources":["../../src/generated/MoreVertical.web.tsx"],"names":[],"mappings":";AAMA,MAAM,YAAY,GAAG,CAAC,EACpB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,
|
|
1
|
+
{"version":3,"file":"MoreVertical.web.js","sourceRoot":"","sources":["../../src/generated/MoreVertical.web.tsx"],"names":[],"mappings":";AAMA,MAAM,YAAY,GAAG,CAAC,EACpB,IAAI,GAAG,EAAE,EACT,KAAK,GAAG,cAAc,EACtB,GAAG,KAAK,EACE,EAAE,EAAE,CAAC,CACf,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,8VAA8V,EAChW,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SvgProps } from 'react-native-svg';
|
|
2
|
+
type IconProps = SvgProps & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Sun: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default Sun;
|
|
8
|
+
//# sourceMappingURL=Sun.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Sun.native.d.ts","sourceRoot":"","sources":["../../src/generated/Sun.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,KAAK,SAAS,GAAG,QAAQ,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,GAAG,GAAI,2BAAiD,SAAS,gCAOtE,CAAC;AACF,eAAe,GAAG,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const Sun = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M12 18C12.3682 18 12.6667 18.2985 12.6667 18.6667V21.3333C12.6667 21.7015 12.3682 22 12 22C11.6318 22 11.3333 21.7015 11.3333 21.3333V18.6667C11.3333 18.2985 11.6318 18 12 18ZM16.1953 16.1953C16.4557 15.935 16.8777 15.935 17.138 16.1953L19.138 18.1953C19.3984 18.4557 19.3984 18.8777 19.138 19.138C18.8777 19.3984 18.4557 19.3984 18.1953 19.138L16.1953 17.138C15.935 16.8777 15.935 16.4557 16.1953 16.1953ZM7.14323 15.9167C7.40358 15.6569 7.82577 15.6566 8.08594 15.9167C8.34629 16.177 8.34629 16.6003 8.08594 16.8607L6.20052 18.7461C5.94017 19.0064 5.51686 19.0064 5.25651 18.7461C4.99646 18.4859 4.99673 18.0637 5.25651 17.8034L7.14323 15.9167ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8ZM5.33333 11.3333C5.70152 11.3333 6 11.6318 6 12C6 12.3682 5.70152 12.6667 5.33333 12.6667H2.66667C2.29848 12.6667 2 12.3682 2 12C2 11.6318 2.29848 11.3333 2.66667 11.3333H5.33333ZM21.3333 11.3333C21.7015 11.3333 22 11.6318 22 12C22 12.3682 21.7015 12.6667 21.3333 12.6667H18.6667C18.2985 12.6667 18 12.3682 18 12C18 11.6318 18.2985 11.3333 18.6667 11.3333H21.3333ZM4.86198 4.86198C5.12233 4.60163 5.54434 4.60163 5.80469 4.86198L7.80469 6.86198C8.06504 7.12233 8.06504 7.54434 7.80469 7.80469C7.54434 8.06504 7.12233 8.06504 6.86198 7.80469L4.86198 5.80469C4.60163 5.54434 4.60163 5.12233 4.86198 4.86198ZM18.1953 4.86198C18.4557 4.60184 18.8777 4.6017 19.138 4.86198C19.3983 5.12226 19.3982 5.54432 19.138 5.80469L17.138 7.80469C16.8777 8.06504 16.4557 8.06504 16.1953 7.80469C15.935 7.54434 15.935 7.12233 16.1953 6.86198L18.1953 4.86198ZM12 2C12.3682 2 12.6667 2.29848 12.6667 2.66667V5.33333C12.6667 5.70152 12.3682 6 12 6C11.6318 6 11.3333 5.70152 11.3333 5.33333V2.66667C11.3333 2.29848 11.6318 2 12 2Z', fill: color }) }));
|
|
4
|
+
export default Sun;
|
|
5
|
+
//# sourceMappingURL=Sun.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Sun.native.js","sourceRoot":"","sources":["../../src/generated/Sun.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,GAAG,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,GAAG,cAAc,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE,CAAC,CAC1E,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,wuDAAwuD,EAC1uD,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,GAAG,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Sun: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default Sun;
|
|
8
|
+
//# sourceMappingURL=Sun.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Sun.web.d.ts","sourceRoot":"","sources":["../../src/generated/Sun.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,KAAK,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,GAAG,GAAI,2BAAiD,SAAS,gCActE,CAAC;AACF,eAAe,GAAG,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Sun = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M12 18C12.3682 18 12.6667 18.2985 12.6667 18.6667V21.3333C12.6667 21.7015 12.3682 22 12 22C11.6318 22 11.3333 21.7015 11.3333 21.3333V18.6667C11.3333 18.2985 11.6318 18 12 18ZM16.1953 16.1953C16.4557 15.935 16.8777 15.935 17.138 16.1953L19.138 18.1953C19.3984 18.4557 19.3984 18.8777 19.138 19.138C18.8777 19.3984 18.4557 19.3984 18.1953 19.138L16.1953 17.138C15.935 16.8777 15.935 16.4557 16.1953 16.1953ZM7.14323 15.9167C7.40358 15.6569 7.82577 15.6566 8.08594 15.9167C8.34629 16.177 8.34629 16.6003 8.08594 16.8607L6.20052 18.7461C5.94017 19.0064 5.51686 19.0064 5.25651 18.7461C4.99646 18.4859 4.99673 18.0637 5.25651 17.8034L7.14323 15.9167ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8ZM5.33333 11.3333C5.70152 11.3333 6 11.6318 6 12C6 12.3682 5.70152 12.6667 5.33333 12.6667H2.66667C2.29848 12.6667 2 12.3682 2 12C2 11.6318 2.29848 11.3333 2.66667 11.3333H5.33333ZM21.3333 11.3333C21.7015 11.3333 22 11.6318 22 12C22 12.3682 21.7015 12.6667 21.3333 12.6667H18.6667C18.2985 12.6667 18 12.3682 18 12C18 11.6318 18.2985 11.3333 18.6667 11.3333H21.3333ZM4.86198 4.86198C5.12233 4.60163 5.54434 4.60163 5.80469 4.86198L7.80469 6.86198C8.06504 7.12233 8.06504 7.54434 7.80469 7.80469C7.54434 8.06504 7.12233 8.06504 6.86198 7.80469L4.86198 5.80469C4.60163 5.54434 4.60163 5.12233 4.86198 4.86198ZM18.1953 4.86198C18.4557 4.60184 18.8777 4.6017 19.138 4.86198C19.3983 5.12226 19.3982 5.54432 19.138 5.80469L17.138 7.80469C16.8777 8.06504 16.4557 8.06504 16.1953 7.80469C15.935 7.54434 15.935 7.12233 16.1953 6.86198L18.1953 4.86198ZM12 2C12.3682 2 12.6667 2.29848 12.6667 2.66667V5.33333C12.6667 5.70152 12.3682 6 12 6C11.6318 6 11.3333 5.70152 11.3333 5.33333V2.66667C11.3333 2.29848 11.6318 2 12 2Z', fill: color }) }));
|
|
3
|
+
export default Sun;
|
|
4
|
+
//# sourceMappingURL=Sun.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Sun.web.js","sourceRoot":"","sources":["../../src/generated/Sun.web.tsx"],"names":[],"mappings":";AAMA,MAAM,GAAG,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,GAAG,cAAc,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE,CAAC,CAC1E,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,wuDAAwuD,EAC1uD,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,GAAG,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SvgProps } from 'react-native-svg';
|
|
2
|
+
type IconProps = SvgProps & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const System: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default System;
|
|
8
|
+
//# sourceMappingURL=System.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"System.native.d.ts","sourceRoot":"","sources":["../../src/generated/System.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEjD,KAAK,SAAS,GAAG,QAAQ,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,MAAM,GAAI,2BAAiD,SAAS,gCAOzE,CAAC;AACF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const System = ({ size = 16, color = 'currentColor', ...props }) => (_jsx(Svg, { width: size, height: size, viewBox: '0 0 24 24', fill: color, ...props, children: _jsx(Path, { d: 'M12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3ZM12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99595 16.0041 4.75 12 4.75V19.25Z', fill: color }) }));
|
|
4
|
+
export default System;
|
|
5
|
+
//# sourceMappingURL=System.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"System.native.js","sourceRoot":"","sources":["../../src/generated/System.native.tsx"],"names":[],"mappings":";AAAA,OAAO,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAO7C,MAAM,MAAM,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,GAAG,cAAc,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE,CAAC,CAC7E,KAAC,GAAG,IAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,KAAM,KAAK,YACxE,KAAC,IAAI,IACH,CAAC,EAAC,0MAA0M,EAC5M,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const System: ({ size, color, ...props }: IconProps) => import("react").JSX.Element;
|
|
7
|
+
export default System;
|
|
8
|
+
//# sourceMappingURL=System.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"System.web.d.ts","sourceRoot":"","sources":["../../src/generated/System.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,KAAK,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IACzC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,QAAA,MAAM,MAAM,GAAI,2BAAiD,SAAS,gCAczE,CAAC;AACF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const System = ({ size = 16, color = 'currentColor', ...props }) => (_jsx("svg", { width: size, height: size, viewBox: '0 0 24 24', fill: color, xmlns: 'http://www.w3.org/2000/svg', ...props, children: _jsx("path", { d: 'M12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3ZM12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99595 16.0041 4.75 12 4.75V19.25Z', fill: color }) }));
|
|
3
|
+
export default System;
|
|
4
|
+
//# sourceMappingURL=System.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"System.web.js","sourceRoot":"","sources":["../../src/generated/System.web.tsx"],"names":[],"mappings":";AAMA,MAAM,MAAM,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,GAAG,cAAc,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE,CAAC,CAC7E,cACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAE,KAAK,EACX,KAAK,EAAC,4BAA4B,KAC9B,KAAK,YAET,eACE,CAAC,EAAC,0MAA0M,EAC5M,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAC;AACF,eAAe,MAAM,CAAC"}
|