@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.290 → 1.1.291

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAtlassian: FC<CentralIconBaseProps>;
4
+ export default IconAtlassian;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:S}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var b,d,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?b??=new WeakMap:d??=new WeakMap,m=s.get(r);if(m)return m}t=r!=null?y(F(r)):{};let C=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let p of f(r))if(!i.call(C,p))n(C,p,{get:B.bind(r,p),enumerable:!0});if(e)s.set(r,C);return C},u=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!i.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=S(r,e))||t.enumerable})}return c.set(r,o),o},c;var w=(r)=>r;function H(r,o){this[r]=w.bind(null,o)}var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:H.bind(o,t)})};var L={};x(L,{CentralIconBase:()=>a});module.exports=u(L);var P=I(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return P.default.createElement(g.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var M={};x(M,{default:()=>Z,IconAtlassian:()=>h});module.exports=u(M);var l=I(require("react"));var v=require("react-native-svg"),h=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(v.Path,{d:"M21.3129 19.8682L12.6017 2.44585C12.4302 2.06859 12.2588 2 12.053 2C11.8815 2 11.6757 2.06859 11.47 2.41155C10.2353 4.36642 9.68654 6.62995 9.68654 8.99637C9.68654 12.2888 11.367 15.3754 13.8364 20.3484C14.1108 20.8971 14.3165 21 14.7966 21H20.8327C21.2786 21 21.5187 20.8285 21.5187 20.4856C21.5187 20.3141 21.4844 20.2112 21.3129 19.8682ZM8.65765 11.6372C7.97171 10.6083 7.76597 10.5397 7.59446 10.5397C7.423 10.5397 7.32013 10.6083 7.01146 11.2256L2.65586 19.9368C2.51867 20.2112 2.48438 20.3141 2.48438 20.4513C2.48438 20.7256 2.72445 21 3.23889 21H9.37787C9.78942 21 10.0981 20.657 10.2695 20.0054C10.4753 19.1823 10.5439 18.4621 10.5439 17.6047C10.5439 15.204 9.48074 12.8719 8.65765 11.6372Z",fill:"currentColor"}))},Z=h;
2
+
3
+ //# debugId=4E6C42A5B1ABDE7864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAtlassian/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAtlassian: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M21.3129 19.8682L12.6017 2.44585C12.4302 2.06859 12.2588 2 12.053 2C11.8815 2 11.6757 2.06859 11.47 2.41155C10.2353 4.36642 9.68654 6.62995 9.68654 8.99637C9.68654 12.2888 11.367 15.3754 13.8364 20.3484C14.1108 20.8971 14.3165 21 14.7966 21H20.8327C21.2786 21 21.5187 20.8285 21.5187 20.4856C21.5187 20.3141 21.4844 20.2112 21.3129 19.8682ZM8.65765 11.6372C7.97171 10.6083 7.76597 10.5397 7.59446 10.5397C7.423 10.5397 7.32013 10.6083 7.01146 11.2256L2.65586 19.9368C2.51867 20.2112 2.48438 20.3141 2.48438 20.4513C2.48438 20.7256 2.72445 21 3.23889 21H9.37787C9.78942 21 10.0981 20.657 10.2695 20.0054C10.4753 19.1823 10.5439 18.4621 10.5439 17.6047C10.5439 15.204 9.48074 12.8719 8.65765 11.6372Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAtlassian;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAwvB,EAAxvB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6rBAA6rB,KAAK,eAAc,CAAI,GAGlvB",
9
+ "debugId": "4E6C42A5B1ABDE7864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return C.createElement(p,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as a}from"react-native-svg";var l=(o)=>{return e.createElement(t,{...o},e.createElement(a,{d:"M21.3129 19.8682L12.6017 2.44585C12.4302 2.06859 12.2588 2 12.053 2C11.8815 2 11.6757 2.06859 11.47 2.41155C10.2353 4.36642 9.68654 6.62995 9.68654 8.99637C9.68654 12.2888 11.367 15.3754 13.8364 20.3484C14.1108 20.8971 14.3165 21 14.7966 21H20.8327C21.2786 21 21.5187 20.8285 21.5187 20.4856C21.5187 20.3141 21.4844 20.2112 21.3129 19.8682ZM8.65765 11.6372C7.97171 10.6083 7.76597 10.5397 7.59446 10.5397C7.423 10.5397 7.32013 10.6083 7.01146 11.2256L2.65586 19.9368C2.51867 20.2112 2.48438 20.3141 2.48438 20.4513C2.48438 20.7256 2.72445 21 3.23889 21H9.37787C9.78942 21 10.0981 20.657 10.2695 20.0054C10.4753 19.1823 10.5439 18.4621 10.5439 17.6047C10.5439 15.204 9.48074 12.8719 8.65765 11.6372Z",fill:"currentColor"}))},g=l;export{g as default,l as IconAtlassian};
2
+
3
+ //# debugId=3CB6D77E5C45C9D664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAtlassian/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAtlassian: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M21.3129 19.8682L12.6017 2.44585C12.4302 2.06859 12.2588 2 12.053 2C11.8815 2 11.6757 2.06859 11.47 2.41155C10.2353 4.36642 9.68654 6.62995 9.68654 8.99637C9.68654 12.2888 11.367 15.3754 13.8364 20.3484C14.1108 20.8971 14.3165 21 14.7966 21H20.8327C21.2786 21 21.5187 20.8285 21.5187 20.4856C21.5187 20.3141 21.4844 20.2112 21.3129 19.8682ZM8.65765 11.6372C7.97171 10.6083 7.76597 10.5397 7.59446 10.5397C7.423 10.5397 7.32013 10.6083 7.01146 11.2256L2.65586 19.9368C2.51867 20.2112 2.48438 20.3141 2.48438 20.4513C2.48438 20.7256 2.72445 21 3.23889 21H9.37787C9.78942 21 10.0981 20.657 10.2695 20.0054C10.4753 19.1823 10.5439 18.4621 10.5439 17.6047C10.5439 15.204 9.48074 12.8719 8.65765 11.6372Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAtlassian;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAwvB,EAAxvB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6rBAA6rB,KAAK,eAAc,CAAI,GAGlvB",
9
+ "debugId": "3CB6D77E5C45C9D664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconConfluence: FC<CentralIconBaseProps>;
4
+ export default IconConfluence;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:y,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:F}=Object,L=Object.prototype.hasOwnProperty;function u(r){return this[r]}var S,b,B=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?S??=new WeakMap:b??=new WeakMap,s=m.get(r);if(s)return s}C=r!=null?h(y(r)):{};let n=o||!r||!r.__esModule?t(C,"default",{value:r,enumerable:!0}):C;for(let p of f(r))if(!L.call(n,p))t(n,p,{get:u.bind(r,p),enumerable:!0});if(e)m.set(r,n);return n},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!L.call(o,e))t(o,e,{get:u.bind(r,e),enumerable:!(C=F(r,e))||C.enumerable})}return c.set(r,o),o},c;var d=(r)=>r;function w(r,o){this[r]=d.bind(null,o)}var i=(r,o)=>{for(var C in o)t(r,C,{get:o[C],enumerable:!0,configurable:!0,set:w.bind(o,C)})};var M={};i(M,{CentralIconBase:()=>a});module.exports=I(M);var x=B(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return x.default.createElement(P.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};i(Z,{default:()=>$,IconConfluence:()=>v});module.exports=I(Z);var l=B(require("react"));var g=require("react-native-svg"),v=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(g.Path,{d:"M20.219 15.4279C14.5865 12.7044 12.941 12.2974 10.5678 12.2974C7.78321 12.2974 5.41 13.4557 3.28992 16.7113L2.94183 17.2435C2.65702 17.6818 2.59375 17.8383 2.59375 18.0261C2.59375 18.2139 2.6887 18.3704 3.03674 18.5896L6.61242 20.8122C6.80228 20.9374 6.96051 21 7.11873 21C7.30859 21 7.43513 20.9061 7.62499 20.6244L8.19456 19.7478C9.08059 18.4017 9.87166 17.9635 10.8842 17.9635C11.7702 17.9635 12.8144 18.2139 14.1118 18.84L17.8457 20.5931C18.2255 20.7809 18.6368 20.687 18.8267 20.2487L20.5987 16.367C20.7885 15.9287 20.6619 15.647 20.219 15.4279ZM3.79617 8.57215C9.42867 11.2956 11.0741 11.7026 13.4473 11.7026C16.2319 11.7026 18.6051 10.5443 20.7253 7.28869L21.0733 6.75649C21.3581 6.31827 21.4214 6.16175 21.4214 5.97389C21.4214 5.78607 21.3265 5.62955 20.9784 5.41044L17.4027 3.18782C17.2128 3.06259 17.0546 3 16.8964 3C16.7066 3 16.58 3.09388 16.3901 3.37563L15.8206 4.25216C14.9345 5.59826 14.1435 6.03653 13.1309 6.03653C12.2449 6.03653 11.2007 5.78607 9.9033 5.15999L6.16943 3.40692C5.78972 3.21911 5.37836 3.31304 5.18851 3.75131L3.41646 7.63303C3.2266 8.07129 3.35319 8.35304 3.79617 8.57215Z",fill:"currentColor"}))},$=v;
2
+
3
+ //# debugId=47B5C7ABB8B4776564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconConfluence/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconConfluence: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.219 15.4279C14.5865 12.7044 12.941 12.2974 10.5678 12.2974C7.78321 12.2974 5.41 13.4557 3.28992 16.7113L2.94183 17.2435C2.65702 17.6818 2.59375 17.8383 2.59375 18.0261C2.59375 18.2139 2.6887 18.3704 3.03674 18.5896L6.61242 20.8122C6.80228 20.9374 6.96051 21 7.11873 21C7.30859 21 7.43513 20.9061 7.62499 20.6244L8.19456 19.7478C9.08059 18.4017 9.87166 17.9635 10.8842 17.9635C11.7702 17.9635 12.8144 18.2139 14.1118 18.84L17.8457 20.5931C18.2255 20.7809 18.6368 20.687 18.8267 20.2487L20.5987 16.367C20.7885 15.9287 20.6619 15.647 20.219 15.4279ZM3.79617 8.57215C9.42867 11.2956 11.0741 11.7026 13.4473 11.7026C16.2319 11.7026 18.6051 10.5443 20.7253 7.28869L21.0733 6.75649C21.3581 6.31827 21.4214 6.16175 21.4214 5.97389C21.4214 5.78607 21.3265 5.62955 20.9784 5.41044L17.4027 3.18782C17.2128 3.06259 17.0546 3 16.8964 3C16.7066 3 16.58 3.09388 16.3901 3.37563L15.8206 4.25216C14.9345 5.59826 14.1435 6.03653 13.1309 6.03653C12.2449 6.03653 11.2007 5.78607 9.9033 5.15999L6.16943 3.40692C5.78972 3.21911 5.37836 3.31304 5.18851 3.75131L3.41646 7.63303C3.2266 8.07129 3.35319 8.35304 3.79617 8.57215Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconConfluence;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAA+oC,EAA/oC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,olCAAolC,KAAK,eAAc,CAAI,GAGzoC",
9
+ "debugId": "47B5C7ABB8B4776564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";import{Svg as p}from"react-native-svg";var C=({children:o,size:r=24,...t})=>{return n.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as a}from"react-native-svg";var l=(o)=>{return e.createElement(C,{...o},e.createElement(a,{d:"M20.219 15.4279C14.5865 12.7044 12.941 12.2974 10.5678 12.2974C7.78321 12.2974 5.41 13.4557 3.28992 16.7113L2.94183 17.2435C2.65702 17.6818 2.59375 17.8383 2.59375 18.0261C2.59375 18.2139 2.6887 18.3704 3.03674 18.5896L6.61242 20.8122C6.80228 20.9374 6.96051 21 7.11873 21C7.30859 21 7.43513 20.9061 7.62499 20.6244L8.19456 19.7478C9.08059 18.4017 9.87166 17.9635 10.8842 17.9635C11.7702 17.9635 12.8144 18.2139 14.1118 18.84L17.8457 20.5931C18.2255 20.7809 18.6368 20.687 18.8267 20.2487L20.5987 16.367C20.7885 15.9287 20.6619 15.647 20.219 15.4279ZM3.79617 8.57215C9.42867 11.2956 11.0741 11.7026 13.4473 11.7026C16.2319 11.7026 18.6051 10.5443 20.7253 7.28869L21.0733 6.75649C21.3581 6.31827 21.4214 6.16175 21.4214 5.97389C21.4214 5.78607 21.3265 5.62955 20.9784 5.41044L17.4027 3.18782C17.2128 3.06259 17.0546 3 16.8964 3C16.7066 3 16.58 3.09388 16.3901 3.37563L15.8206 4.25216C14.9345 5.59826 14.1435 6.03653 13.1309 6.03653C12.2449 6.03653 11.2007 5.78607 9.9033 5.15999L6.16943 3.40692C5.78972 3.21911 5.37836 3.31304 5.18851 3.75131L3.41646 7.63303C3.2266 8.07129 3.35319 8.35304 3.79617 8.57215Z",fill:"currentColor"}))},P=l;export{P as default,l as IconConfluence};
2
+
3
+ //# debugId=2F6CC141EA5854FE64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconConfluence/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconConfluence: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.219 15.4279C14.5865 12.7044 12.941 12.2974 10.5678 12.2974C7.78321 12.2974 5.41 13.4557 3.28992 16.7113L2.94183 17.2435C2.65702 17.6818 2.59375 17.8383 2.59375 18.0261C2.59375 18.2139 2.6887 18.3704 3.03674 18.5896L6.61242 20.8122C6.80228 20.9374 6.96051 21 7.11873 21C7.30859 21 7.43513 20.9061 7.62499 20.6244L8.19456 19.7478C9.08059 18.4017 9.87166 17.9635 10.8842 17.9635C11.7702 17.9635 12.8144 18.2139 14.1118 18.84L17.8457 20.5931C18.2255 20.7809 18.6368 20.687 18.8267 20.2487L20.5987 16.367C20.7885 15.9287 20.6619 15.647 20.219 15.4279ZM3.79617 8.57215C9.42867 11.2956 11.0741 11.7026 13.4473 11.7026C16.2319 11.7026 18.6051 10.5443 20.7253 7.28869L21.0733 6.75649C21.3581 6.31827 21.4214 6.16175 21.4214 5.97389C21.4214 5.78607 21.3265 5.62955 20.9784 5.41044L17.4027 3.18782C17.2128 3.06259 17.0546 3 16.8964 3C16.7066 3 16.58 3.09388 16.3901 3.37563L15.8206 4.25216C14.9345 5.59826 14.1435 6.03653 13.1309 6.03653C12.2449 6.03653 11.2007 5.78607 9.9033 5.15999L6.16943 3.40692C5.78972 3.21911 5.37836 3.31304 5.18851 3.75131L3.41646 7.63303C3.2266 8.07129 3.35319 8.35304 3.79617 8.57215Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconConfluence;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA+oC,EAA/oC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,olCAAolC,KAAK,eAAc,CAAI,GAGzoC",
9
+ "debugId": "2F6CC141EA5854FE64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconJira: FC<CentralIconBaseProps>;
4
+ export default IconJira;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,S,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?F??=new WeakMap:S??=new WeakMap,s=m.get(r);if(s)return s}t=r!=null?v(h(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let C of f(r))if(!i.call(p,C))n(p,C,{get:B.bind(r,C),enumerable:!0});if(e)m.set(r,p);return p},u=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!i.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function d(r,o){this[r]=b.bind(null,o)}var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:d.bind(o,t)})};var M={};x(M,{CentralIconBase:()=>a});module.exports=u(M);var P=I(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return P.default.createElement(g.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};x(Z,{default:()=>w,IconJira:()=>V});module.exports=u(Z);var l=I(require("react"));var H=require("react-native-svg"),V=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(H.Path,{d:"M8.44932 15.6568H6.79222C4.29294 15.6568 2.5 14.1259 2.5 11.8843H11.4104C11.8723 11.8843 12.1711 12.2124 12.1711 12.6771V21.6434C9.94346 21.6434 8.44932 19.8392 8.44932 17.3243V15.6568ZM12.8502 11.2009H11.1931C8.69381 11.2009 6.90088 9.69743 6.90088 7.45582H15.8113C16.2731 7.45582 16.5991 7.75654 16.5991 8.22125V17.1876C14.3715 17.1876 12.8502 15.3834 12.8502 12.8684V11.2009ZM17.2783 6.77241H15.6211C13.1219 6.77241 11.3289 5.24157 11.3289 3H20.2393C20.7012 3 21 3.32802 21 3.7654V12.7318C18.7724 12.7318 17.2783 10.9275 17.2783 8.41261V6.77241Z",fill:"currentColor"}))},w=V;
2
+
3
+ //# debugId=96231C048D5635F364756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconJira/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconJira: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.44932 15.6568H6.79222C4.29294 15.6568 2.5 14.1259 2.5 11.8843H11.4104C11.8723 11.8843 12.1711 12.2124 12.1711 12.6771V21.6434C9.94346 21.6434 8.44932 19.8392 8.44932 17.3243V15.6568ZM12.8502 11.2009H11.1931C8.69381 11.2009 6.90088 9.69743 6.90088 7.45582H15.8113C16.2731 7.45582 16.5991 7.75654 16.5991 8.22125V17.1876C14.3715 17.1876 12.8502 15.3834 12.8502 12.8684V11.2009ZM17.2783 6.77241H15.6211C13.1219 6.77241 11.3289 5.24157 11.3289 3H20.2393C20.7012 3 21 3.32802 21 3.7654V12.7318C18.7724 12.7318 17.2783 10.9275 17.2783 8.41261V6.77241Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconJira;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAAkmB,EAAlmB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uiBAAuiB,KAAK,eAAc,CAAI,GAG5lB",
9
+ "debugId": "96231C048D5635F364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(C,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as a}from"react-native-svg";var l=(o)=>{return e.createElement(t,{...o},e.createElement(a,{d:"M8.44932 15.6568H6.79222C4.29294 15.6568 2.5 14.1259 2.5 11.8843H11.4104C11.8723 11.8843 12.1711 12.2124 12.1711 12.6771V21.6434C9.94346 21.6434 8.44932 19.8392 8.44932 17.3243V15.6568ZM12.8502 11.2009H11.1931C8.69381 11.2009 6.90088 9.69743 6.90088 7.45582H15.8113C16.2731 7.45582 16.5991 7.75654 16.5991 8.22125V17.1876C14.3715 17.1876 12.8502 15.3834 12.8502 12.8684V11.2009ZM17.2783 6.77241H15.6211C13.1219 6.77241 11.3289 5.24157 11.3289 3H20.2393C20.7012 3 21 3.32802 21 3.7654V12.7318C18.7724 12.7318 17.2783 10.9275 17.2783 8.41261V6.77241Z",fill:"currentColor"}))},g=l;export{g as default,l as IconJira};
2
+
3
+ //# debugId=28B596CE1E7F6AEA64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconJira/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconJira: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.44932 15.6568H6.79222C4.29294 15.6568 2.5 14.1259 2.5 11.8843H11.4104C11.8723 11.8843 12.1711 12.2124 12.1711 12.6771V21.6434C9.94346 21.6434 8.44932 19.8392 8.44932 17.3243V15.6568ZM12.8502 11.2009H11.1931C8.69381 11.2009 6.90088 9.69743 6.90088 7.45582H15.8113C16.2731 7.45582 16.5991 7.75654 16.5991 8.22125V17.1876C14.3715 17.1876 12.8502 15.3834 12.8502 12.8684V11.2009ZM17.2783 6.77241H15.6211C13.1219 6.77241 11.3289 5.24157 11.3289 3H20.2393C20.7012 3 21 3.32802 21 3.7654V12.7318C18.7724 12.7318 17.2783 10.9275 17.2783 8.41261V6.77241Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconJira;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAAkmB,EAAlmB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uiBAAuiB,KAAK,eAAc,CAAI,GAG5lB",
9
+ "debugId": "28B596CE1E7F6AEA64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1852,6 +1852,9 @@ Below is a complete list of available icons:
1852
1852
  - IconSwift
1853
1853
  - IconSiriGen2
1854
1854
  - IconQwik
1855
+ - IconAtlassian
1856
+ - IconJira
1857
+ - IconConfluence
1855
1858
 
1856
1859
  ### Sound & Music
1857
1860