@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.188 → 1.1.190
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/IconBecepsLeftArm/index.d.ts +4 -0
- package/IconBecepsLeftArm/index.js +2 -0
- package/IconBecepsLeftArm/index.js.map +1 -0
- package/IconBecepsLeftArm/index.mjs +2 -0
- package/IconBecepsLeftArm/index.mjs.map +1 -0
- package/IconBecepsRightArm/index.d.ts +4 -0
- package/IconBecepsRightArm/index.js +2 -0
- package/IconBecepsRightArm/index.js.map +1 -0
- package/IconBecepsRightArm/index.mjs +2 -0
- package/IconBecepsRightArm/index.mjs.map +1 -0
- package/{IconPeople21 → IconBridge}/index.d.ts +2 -2
- package/IconBridge/index.js +2 -0
- package/IconBridge/index.js.map +1 -0
- package/IconBridge/index.mjs +2 -0
- package/IconBridge/index.mjs.map +1 -0
- package/IconGoldenGateBridge/index.d.ts +4 -0
- package/IconGoldenGateBridge/index.js +2 -0
- package/IconGoldenGateBridge/index.js.map +1 -0
- package/IconGoldenGateBridge/index.mjs +2 -0
- package/IconGoldenGateBridge/index.mjs.map +1 -0
- package/IconPeopleGroup2/index.d.ts +4 -0
- package/IconPeopleGroup2/index.js +2 -0
- package/IconPeopleGroup2/index.js.map +1 -0
- package/{IconPeople21 → IconPeopleGroup2}/index.mjs +1 -1
- package/IconPeopleGroup2/index.mjs.map +1 -0
- package/README.md +5 -1
- package/filtered-icons.json +72 -16
- package/icons/index.d.ts +5 -1
- package/icons-index.json +17 -9
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +37 -9
- package/IconPeople21/index.js +0 -2
- package/IconPeople21/index.js.map +0 -1
- package/IconPeople21/index.mjs.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of u(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=i(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconBecepsLeftArm:()=>B,default:()=>h});module.exports=v(y);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),B=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M13.1689 2C9.49998 2 9.99943 7.99944 13.999 7C16.4989 10.9999 14.6318 12 16 15C14.6696 13.8596 13.1988 13.0201 11.6729 13.0312C8.99906 8.00025 1.9974 9.67814 2 14.9502C2.00012 23.7105 16.5908 23.1583 21.668 19.4707C23.3218 10.0703 18.5302 2.00035 13.1689 2Z",fill:"currentColor"})),h=B;0&&(module.exports={IconBecepsLeftArm});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBecepsLeftArm/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBecepsLeftArm: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.1689 2C9.49998 2 9.99943 7.99944 13.999 7C16.4989 10.9999 14.6318 12 16 15C14.6696 13.8596 13.1988 13.0201 11.6729 13.0312C8.99906 8.00025 1.9974 9.67814 2 14.9502C2.00012 23.7105 16.5908 23.1583 21.668 19.4707C23.3218 10.0703 18.5302 2.00035 13.1689 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBecepsLeftArm;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oQACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconBecepsLeftArm_exports","__export","IconBecepsLeftArm","IconBecepsLeftArm_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBecepsLeftArm","props","React","CentralIconBase","IconBecepsLeftArm_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>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{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M13.1689 2C9.49998 2 9.99943 7.99944 13.999 7C16.4989 10.9999 14.6318 12 16 15C14.6696 13.8596 13.1988 13.0201 11.6729 13.0312C8.99906 8.00025 1.9974 9.67814 2 14.9502C2.00012 23.7105 16.5908 23.1583 21.668 19.4707C23.3218 10.0703 18.5302 2.00035 13.1689 2Z",fill:"currentColor"})),P=m;export{m as IconBecepsLeftArm,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBecepsLeftArm/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBecepsLeftArm: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.1689 2C9.49998 2 9.99943 7.99944 13.999 7C16.4989 10.9999 14.6318 12 16 15C14.6696 13.8596 13.1988 13.0201 11.6729 13.0312C8.99906 8.00025 1.9974 9.67814 2 14.9502C2.00012 23.7105 16.5908 23.1583 21.668 19.4707C23.3218 10.0703 18.5302 2.00035 13.1689 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBecepsLeftArm;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oQACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBecepsLeftArm","props","React","CentralIconBase","IconBecepsLeftArm_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of g(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=I(o,e))||C.enumerable});return r};var m=(r,o,t)=>(t=r!=null?i(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var y={};P(y,{IconBecepsRightArm:()=>B,default:()=>v});module.exports=h(y);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>l.default.createElement(s.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 f=require("react-native-svg"),B=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M10.8309 2C14.4999 2 14.0005 7.99944 10.0009 7C7.50096 10.9999 9.36809 12 7.99989 15C9.33034 13.8596 10.801 13.0201 12.327 13.0312C15.0008 8.00025 22.0025 9.67814 21.9999 14.9502C21.9998 23.7105 7.40913 23.1583 2.33192 19.4707C0.678051 10.0703 5.46973 2.00035 10.8309 2Z",fill:"currentColor"})),v=B;0&&(module.exports={IconBecepsRightArm});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBecepsRightArm/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBecepsRightArm: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.8309 2C14.4999 2 14.0005 7.99944 10.0009 7C7.50096 10.9999 9.36809 12 7.99989 15C9.33034 13.8596 10.801 13.0201 12.327 13.0312C15.0008 8.00025 22.0025 9.67814 21.9999 14.9502C21.9998 23.7105 7.40913 23.1583 2.33192 19.4707C0.678051 10.0703 5.46973 2.00035 10.8309 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBecepsRightArm;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,wBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconBecepsRightArm_exports","__export","IconBecepsRightArm","IconBecepsRightArm_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBecepsRightArm","props","React","CentralIconBase","IconBecepsRightArm_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>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{Path as a}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(a,{d:"M10.8309 2C14.4999 2 14.0005 7.99944 10.0009 7C7.50096 10.9999 9.36809 12 7.99989 15C9.33034 13.8596 10.801 13.0201 12.327 13.0312C15.0008 8.00025 22.0025 9.67814 21.9999 14.9502C21.9998 23.7105 7.40913 23.1583 2.33192 19.4707C0.678051 10.0703 5.46973 2.00035 10.8309 2Z",fill:"currentColor"})),x=m;export{m as IconBecepsRightArm,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBecepsRightArm/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBecepsRightArm: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.8309 2C14.4999 2 14.0005 7.99944 10.0009 7C7.50096 10.9999 9.36809 12 7.99989 15C9.33034 13.8596 10.801 13.0201 12.327 13.0312C15.0008 8.00025 22.0025 9.67814 21.9999 14.9502C21.9998 23.7105 7.40913 23.1583 2.33192 19.4707C0.678051 10.0703 5.46973 2.00035 10.8309 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBecepsRightArm;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iRACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBecepsRightArm","props","React","CentralIconBase","IconBecepsRightArm_default"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconBridge: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconBridge;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of g(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?i(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var h={};P(h,{IconBridge:()=>B,default:()=>d});module.exports=v(h);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 4.5C16.4183 4.5 20 8.08172 20 12.5V12.6455C21.4457 13.0758 22.5 14.4145 22.5 16C22.5 17.933 20.933 19.5 19 19.5C17.067 19.5 15.5 17.933 15.5 16C15.5 14.4145 16.5543 13.0758 18 12.6455V12.5C18 9.18629 15.3137 6.5 12 6.5C8.68629 6.5 6 9.18629 6 12.5V12.6455C7.44566 13.0758 8.5 14.4145 8.5 16C8.5 17.933 6.933 19.5 5 19.5C3.067 19.5 1.5 17.933 1.5 16C1.5 14.4145 2.55434 13.0758 4 12.6455V12.5C4 8.08172 7.58172 4.5 12 4.5Z",fill:"currentColor"})),d=B;0&&(module.exports={IconBridge});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBridge/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 4.5C16.4183 4.5 20 8.08172 20 12.5V12.6455C21.4457 13.0758 22.5 14.4145 22.5 16C22.5 17.933 20.933 19.5 19 19.5C17.067 19.5 15.5 17.933 15.5 16C15.5 14.4145 16.5543 13.0758 18 12.6455V12.5C18 9.18629 15.3137 6.5 12 6.5C8.68629 6.5 6 9.18629 6 12.5V12.6455C7.44566 13.0758 8.5 14.4145 8.5 16C8.5 17.933 6.933 19.5 5 19.5C3.067 19.5 1.5 17.933 1.5 16C1.5 14.4145 2.55434 13.0758 4 12.6455V12.5C4 8.08172 7.58172 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBridge;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4aACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconBridge_exports","__export","IconBridge","IconBridge_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBridge","props","React","CentralIconBase","IconBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>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{Path as a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M12 4.5C16.4183 4.5 20 8.08172 20 12.5V12.6455C21.4457 13.0758 22.5 14.4145 22.5 16C22.5 17.933 20.933 19.5 19 19.5C17.067 19.5 15.5 17.933 15.5 16C15.5 14.4145 16.5543 13.0758 18 12.6455V12.5C18 9.18629 15.3137 6.5 12 6.5C8.68629 6.5 6 9.18629 6 12.5V12.6455C7.44566 13.0758 8.5 14.4145 8.5 16C8.5 17.933 6.933 19.5 5 19.5C3.067 19.5 1.5 17.933 1.5 16C1.5 14.4145 2.55434 13.0758 4 12.6455V12.5C4 8.08172 7.58172 4.5 12 4.5Z",fill:"currentColor"})),x=l;export{l as IconBridge,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBridge/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 4.5C16.4183 4.5 20 8.08172 20 12.5V12.6455C21.4457 13.0758 22.5 14.4145 22.5 16C22.5 17.933 20.933 19.5 19 19.5C17.067 19.5 15.5 17.933 15.5 16C15.5 14.4145 16.5543 13.0758 18 12.6455V12.5C18 9.18629 15.3137 6.5 12 6.5C8.68629 6.5 6 9.18629 6 12.5V12.6455C7.44566 13.0758 8.5 14.4145 8.5 16C8.5 17.933 6.933 19.5 5 19.5C3.067 19.5 1.5 17.933 1.5 16C1.5 14.4145 2.55434 13.0758 4 12.6455V12.5C4 8.08172 7.58172 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBridge;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4aACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBridge","props","React","CentralIconBase","IconBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var h=Object.create;var C=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},d=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of c(o))!B.call(r,s)&&s!==t&&C(r,s,{get:()=>o[s],enumerable:!(p=a(o,s))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?h(f(r)):{},d(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>d(C({},"__esModule",{value:!0}),r);var M={};I(M,{IconGoldenGateBridge:()=>u,default:()=>x});module.exports=g(M);var e=l(require("react"));var i=l(require("react")),k=require("react-native-svg"),m=({children:r,size:o=24,...t})=>i.default.createElement(k.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 n=require("react-native-svg"),u=r=>e.default.createElement(m,{...r},e.default.createElement(n.Path,{d:"M1 16H23",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M18 4C18 7.31371 15.3137 10 12 10C8.68629 10 6 7.31371 6 4",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M23 9C20.2386 9 18 6.76142 18 4",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M1 9C3.76142 9 6 6.76142 6 4",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M6 6V20",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M18 6V20",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2"})),x=u;0&&(module.exports={IconGoldenGateBridge});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoldenGateBridge/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGoldenGateBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M1 16H23\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M18 4C18 7.31371 15.3137 10 12 10C8.68629 10 6 7.31371 6 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M23 9C20.2386 9 18 6.76142 18 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M1 9C3.76142 9 6 6.76142 6 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M6 6V20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M18 6V20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M12 10V16\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconGoldenGateBridge;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzD,EAAAA,QAAA,cAAC,QACC,EAAE,6DACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzD,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,CAC5D,EAIGE,EAAQJ","names":["IconGoldenGateBridge_exports","__export","IconGoldenGateBridge","IconGoldenGateBridge_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoldenGateBridge","props","React","CentralIconBase","IconGoldenGateBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import C from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:t=24,...s})=>C.createElement(p,{...s,width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},e);import{Path as o}from"react-native-svg";var d=e=>r.createElement(n,{...e},r.createElement(o,{d:"M1 16H23",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M18 4C18 7.31371 15.3137 10 12 10C8.68629 10 6 7.31371 6 4",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M23 9C20.2386 9 18 6.76142 18 4",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M1 9C3.76142 9 6 6.76142 6 4",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M6 6V20",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M18 6V20",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2"})),B=d;export{d as IconGoldenGateBridge,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoldenGateBridge/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGoldenGateBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M1 16H23\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M18 4C18 7.31371 15.3137 10 12 10C8.68629 10 6 7.31371 6 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M23 9C20.2386 9 18 6.76142 18 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M1 9C3.76142 9 6 6.76142 6 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M6 6V20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M18 6V20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M12 10V16\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconGoldenGateBridge;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzDG,EAAA,cAACH,EAAA,CACC,EAAE,6DACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,EACxDG,EAAA,cAACH,EAAA,CAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzDG,EAAA,cAACH,EAAA,CAAK,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,CAC5D,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoldenGateBridge","props","React","CentralIconBase","IconGoldenGateBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0})},f=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&l(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(P(r)):{},f(o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>f(l({},"__esModule",{value:!0}),r);var h={};d(h,{IconPeopleGroup2:()=>c,default:()=>v});module.exports=g(h);var n=m(require("react"));var a=m(require("react")),s=require("react-native-svg"),u=({children:r,size:o=24,...e})=>a.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),c=r=>n.default.createElement(u,{...r},n.default.createElement(C.Path,{d:"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z",fill:"currentColor"})),v=c;0&&(module.exports={IconPeopleGroup2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleGroup2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPeopleGroup2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleGroup2;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2GACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qPACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPeopleGroup2_exports","__export","IconPeopleGroup2","IconPeopleGroup2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPeopleGroup2","props","React","CentralIconBase","IconPeopleGroup2_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...C})=>l.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var f=n=>o.createElement(t,{...n},o.createElement(e,{d:"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z",fill:"currentColor"}),o.createElement(e,{d:"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z",fill:"currentColor"}),o.createElement(e,{d:"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z",fill:"currentColor"}),o.createElement(e,{d:"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z",fill:"currentColor"})),x=f;export{f as
|
|
1
|
+
import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...C})=>l.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var f=n=>o.createElement(t,{...n},o.createElement(e,{d:"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z",fill:"currentColor"}),o.createElement(e,{d:"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z",fill:"currentColor"}),o.createElement(e,{d:"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z",fill:"currentColor"}),o.createElement(e,{d:"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z",fill:"currentColor"})),x=f;export{f as IconPeopleGroup2,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleGroup2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPeopleGroup2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleGroup2;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2GACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qPACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeopleGroup2","props","React","CentralIconBase","IconPeopleGroup2_default"]}
|
package/README.md
CHANGED
|
@@ -399,6 +399,7 @@ Below is a complete list of available icons:
|
|
|
399
399
|
- IconCourt
|
|
400
400
|
- IconDoor
|
|
401
401
|
- IconGarage
|
|
402
|
+
- IconGoldenGateBridge
|
|
402
403
|
- IconGovernment
|
|
403
404
|
- IconHome
|
|
404
405
|
- IconHomeCircle
|
|
@@ -454,6 +455,7 @@ Below is a complete list of available icons:
|
|
|
454
455
|
- IconBrackets2
|
|
455
456
|
- IconBranch
|
|
456
457
|
- IconBranchSimple
|
|
458
|
+
- IconBridge
|
|
457
459
|
- IconBug
|
|
458
460
|
- IconBugFace
|
|
459
461
|
- IconChanges
|
|
@@ -1003,6 +1005,8 @@ Below is a complete list of available icons:
|
|
|
1003
1005
|
|
|
1004
1006
|
### Hands
|
|
1005
1007
|
|
|
1008
|
+
- IconBecepsLeftArm
|
|
1009
|
+
- IconBecepsRightArm
|
|
1006
1010
|
- IconBlip
|
|
1007
1011
|
- IconFistbump
|
|
1008
1012
|
- IconHand4Finger
|
|
@@ -1357,7 +1361,6 @@ Below is a complete list of available icons:
|
|
|
1357
1361
|
- IconHead
|
|
1358
1362
|
- IconPeople
|
|
1359
1363
|
- IconPeople2
|
|
1360
|
-
- IconPeople21
|
|
1361
1364
|
- IconPeopleAdd
|
|
1362
1365
|
- IconPeopleAdd2
|
|
1363
1366
|
- IconPeopleAdded
|
|
@@ -1365,6 +1368,7 @@ Below is a complete list of available icons:
|
|
|
1365
1368
|
- IconPeopleCopy
|
|
1366
1369
|
- IconPeopleEdit
|
|
1367
1370
|
- IconPeopleGear
|
|
1371
|
+
- IconPeopleGroup2
|
|
1368
1372
|
- IconPeopleIdCard
|
|
1369
1373
|
- IconPeopleLike
|
|
1370
1374
|
- IconPeopleNoise
|
package/filtered-icons.json
CHANGED
|
@@ -1781,7 +1781,7 @@
|
|
|
1781
1781
|
{
|
|
1782
1782
|
"category": "Arrows",
|
|
1783
1783
|
"svg": "<path d=\"M7.04284 17C8.323 18.2349 10.0881 19 12 19C15.866 19 19 15.866 19 12C19 11.7028 18.9815 11.4104 18.9458 11.1237L20.9304 10.8763C20.9764 11.2448 21 11.6199 21 12C21 16.9706 16.9706 21 12 21C9.72477 21 7.60877 20.1546 6 18.7559V21H4V15H10V17H7.04284Z\" fill=\"currentColor\"/><path d=\"M5 12C5 12.2972 5.01846 12.5896 5.05421 12.8763L3.06958 13.1237C3.02362 12.7552 3 12.3801 3 12C3 7.02944 7.02944 3 12 3C14.2808 3 16.4015 3.84954 18.0117 5.25427V3H20.0117V9H14.0117V7H16.9572C15.677 5.76515 13.9119 5 12 5C8.13401 5 5 8.13401 5 12Z\" fill=\"currentColor\"/>",
|
|
1784
|
-
"iconName": "arrow-rotate-right-left, repeat, refresh",
|
|
1784
|
+
"iconName": "arrow-rotate-right-left, repeat, refresh, routines",
|
|
1785
1785
|
"variant": {
|
|
1786
1786
|
"join": "square",
|
|
1787
1787
|
"filled": "on",
|
|
@@ -3094,6 +3094,34 @@
|
|
|
3094
3094
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
3095
3095
|
"componentName": "IconBean"
|
|
3096
3096
|
},
|
|
3097
|
+
{
|
|
3098
|
+
"category": "Hands",
|
|
3099
|
+
"svg": "<path d=\"M13.1689 2C9.49998 2 9.99943 7.99944 13.999 7C16.4989 10.9999 14.6318 12 16 15C14.6696 13.8596 13.1988 13.0201 11.6729 13.0312C8.99906 8.00025 1.9974 9.67814 2 14.9502C2.00012 23.7105 16.5908 23.1583 21.668 19.4707C23.3218 10.0703 18.5302 2.00035 13.1689 2Z\" fill=\"currentColor\"/>",
|
|
3100
|
+
"iconName": "beceps-left-arm, strong, flex, power",
|
|
3101
|
+
"variant": {
|
|
3102
|
+
"join": "square",
|
|
3103
|
+
"filled": "on",
|
|
3104
|
+
"radius": "0",
|
|
3105
|
+
"stroke": "2"
|
|
3106
|
+
},
|
|
3107
|
+
"createdAt": "2026-04-15T10:02:50.447041+00:00",
|
|
3108
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
3109
|
+
"componentName": "IconBecepsLeftArm"
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"category": "Hands",
|
|
3113
|
+
"svg": "<path d=\"M10.8309 2C14.4999 2 14.0005 7.99944 10.0009 7C7.50096 10.9999 9.36809 12 7.99989 15C9.33034 13.8596 10.801 13.0201 12.327 13.0312C15.0008 8.00025 22.0025 9.67814 21.9999 14.9502C21.9998 23.7105 7.40913 23.1583 2.33192 19.4707C0.678051 10.0703 5.46973 2.00035 10.8309 2Z\" fill=\"currentColor\"/>",
|
|
3114
|
+
"iconName": "beceps-right-arm, strong, flex, power",
|
|
3115
|
+
"variant": {
|
|
3116
|
+
"join": "square",
|
|
3117
|
+
"filled": "on",
|
|
3118
|
+
"radius": "0",
|
|
3119
|
+
"stroke": "2"
|
|
3120
|
+
},
|
|
3121
|
+
"createdAt": "2026-04-15T10:02:50.447041+00:00",
|
|
3122
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
3123
|
+
"componentName": "IconBecepsRightArm"
|
|
3124
|
+
},
|
|
3097
3125
|
{
|
|
3098
3126
|
"category": "Furniture & Household",
|
|
3099
3127
|
"svg": "<path d=\"M4 4H11V9H4V4Z\" fill=\"currentColor\"/><path d=\"M13 9V4H20V9H13Z\" fill=\"currentColor\"/><path d=\"M22 11H2V18H4V20H6V18H18V20H20V18H22V11Z\" fill=\"currentColor\"/>",
|
|
@@ -4102,6 +4130,20 @@
|
|
|
4102
4130
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
4103
4131
|
"componentName": "IconBreakfast"
|
|
4104
4132
|
},
|
|
4133
|
+
{
|
|
4134
|
+
"category": "Code",
|
|
4135
|
+
"svg": "<path d=\"M12 4.5C16.4183 4.5 20 8.08172 20 12.5V12.6455C21.4457 13.0758 22.5 14.4145 22.5 16C22.5 17.933 20.933 19.5 19 19.5C17.067 19.5 15.5 17.933 15.5 16C15.5 14.4145 16.5543 13.0758 18 12.6455V12.5C18 9.18629 15.3137 6.5 12 6.5C8.68629 6.5 6 9.18629 6 12.5V12.6455C7.44566 13.0758 8.5 14.4145 8.5 16C8.5 17.933 6.933 19.5 5 19.5C3.067 19.5 1.5 17.933 1.5 16C1.5 14.4145 2.55434 13.0758 4 12.6455V12.5C4 8.08172 7.58172 4.5 12 4.5Z\" fill=\"currentColor\"/>",
|
|
4136
|
+
"iconName": "bridge, connection",
|
|
4137
|
+
"variant": {
|
|
4138
|
+
"join": "square",
|
|
4139
|
+
"filled": "on",
|
|
4140
|
+
"radius": "0",
|
|
4141
|
+
"stroke": "2"
|
|
4142
|
+
},
|
|
4143
|
+
"createdAt": "2026-04-15T06:01:58.081889+00:00",
|
|
4144
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
4145
|
+
"componentName": "IconBridge"
|
|
4146
|
+
},
|
|
4105
4147
|
{
|
|
4106
4148
|
"category": "Photography & Video",
|
|
4107
4149
|
"svg": "<path d=\"M13 1H11V4H13V1Z\" fill=\"currentColor\"/><path d=\"M4.92895 3.51472L3.51474 4.92893L5.63606 7.05025L7.05028 5.63604L4.92895 3.51472Z\" fill=\"currentColor\"/><path d=\"M20.4853 4.92896L19.0711 3.51474L16.9498 5.63606L18.364 7.05028L20.4853 4.92896Z\" fill=\"currentColor\"/><path d=\"M12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6Z\" fill=\"currentColor\"/><path d=\"M1 11V13H4V11H1Z\" fill=\"currentColor\"/><path d=\"M20 11V13H23V11H20Z\" fill=\"currentColor\"/><path d=\"M18.364 16.9497L16.9498 18.364L19.0711 20.4853L20.4853 19.0711L18.364 16.9497Z\" fill=\"currentColor\"/><path d=\"M7.0503 18.364L5.63608 16.9498L3.51476 19.0711L4.92898 20.4853L7.0503 18.364Z\" fill=\"currentColor\"/><path d=\"M13 20H11V23H13V20Z\" fill=\"currentColor\"/>",
|
|
@@ -12726,6 +12768,20 @@
|
|
|
12726
12768
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
12727
12769
|
"componentName": "IconGold"
|
|
12728
12770
|
},
|
|
12771
|
+
{
|
|
12772
|
+
"category": "Building",
|
|
12773
|
+
"svg": "<path d=\"M1 16H23\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M18 4C18 7.31371 15.3137 10 12 10C8.68629 10 6 7.31371 6 4\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M23 9C20.2386 9 18 6.76142 18 4\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M1 9C3.76142 9 6 6.76142 6 4\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M6 6V20\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M18 6V20\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M12 10V16\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
12774
|
+
"iconName": "golden-gate-bridge, silicon-valley, sf",
|
|
12775
|
+
"variant": {
|
|
12776
|
+
"join": "square",
|
|
12777
|
+
"filled": "on",
|
|
12778
|
+
"radius": "0",
|
|
12779
|
+
"stroke": "2"
|
|
12780
|
+
},
|
|
12781
|
+
"createdAt": "2026-04-15T06:01:58.081889+00:00",
|
|
12782
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
12783
|
+
"componentName": "IconGoldenGateBridge"
|
|
12784
|
+
},
|
|
12729
12785
|
{
|
|
12730
12786
|
"category": "Things",
|
|
12731
12787
|
"svg": "<path d=\"M16.5 23.2812L12 22.0303L7.5 23.2812V18.1182C8.83945 18.84 10.3718 19.25 12 19.25C13.6282 19.25 15.1605 18.84 16.5 18.1182V23.2812Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 1.5C16.5563 1.5 20.25 5.19365 20.25 9.75C20.25 14.3063 16.5563 18 12 18C7.44365 18 3.75 14.3063 3.75 9.75C3.75 5.19365 7.44365 1.5 12 1.5ZM9.27344 6.97656V8.64844L11.0625 7.55469H11.1094V13.75H13.0391V5.75H11.2461L9.27344 6.97656Z\" fill=\"currentColor\"/>",
|
|
@@ -18287,7 +18343,7 @@
|
|
|
18287
18343
|
{
|
|
18288
18344
|
"category": "People",
|
|
18289
18345
|
"svg": "<path d=\"M6.5 7.5C6.5 4.46243 8.96243 2 12 2C15.0376 2 17.5 4.46243 17.5 7.5C17.5 10.5376 15.0376 13 12 13C8.96243 13 6.5 10.5376 6.5 7.5Z\" fill=\"currentColor\"/><path d=\"M3 21V19C3 16.2386 5.23858 14 8 14H16C18.7614 14 21 16.2386 21 19V21C17.8426 21 6.15743 21 3 21Z\" fill=\"currentColor\"/>",
|
|
18290
|
-
"iconName": "people-2",
|
|
18346
|
+
"iconName": "people-2, user, person, member",
|
|
18291
18347
|
"variant": {
|
|
18292
18348
|
"join": "square",
|
|
18293
18349
|
"filled": "on",
|
|
@@ -18298,20 +18354,6 @@
|
|
|
18298
18354
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
18299
18355
|
"componentName": "IconPeople2"
|
|
18300
18356
|
},
|
|
18301
|
-
{
|
|
18302
|
-
"category": "People",
|
|
18303
|
-
"svg": "<path d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\" fill=\"currentColor\"/><path d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\" fill=\"currentColor\"/><path d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\" fill=\"currentColor\"/><path d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\" fill=\"currentColor\"/>",
|
|
18304
|
-
"iconName": "people-2, user, group, friend",
|
|
18305
|
-
"variant": {
|
|
18306
|
-
"join": "square",
|
|
18307
|
-
"filled": "on",
|
|
18308
|
-
"radius": "0",
|
|
18309
|
-
"stroke": "2"
|
|
18310
|
-
},
|
|
18311
|
-
"createdAt": "2026-02-13T08:00:42.259331+00:00",
|
|
18312
|
-
"packageName": "square-filled-radius-0-stroke-2",
|
|
18313
|
-
"componentName": "IconPeople21"
|
|
18314
|
-
},
|
|
18315
18357
|
{
|
|
18316
18358
|
"category": "People",
|
|
18317
18359
|
"svg": "<path d=\"M7.50098 6.5C7.50098 4.01472 9.5157 2 12.001 2C14.4863 2 16.501 4.01472 16.501 6.5C16.501 8.98528 14.4863 11 12.001 11C9.5157 11 7.50098 8.98528 7.50098 6.5Z\" fill=\"currentColor\"/><path d=\"M17.001 14V17H14.001V19H17.001V22H19.001V19H22.001V17H19.001V14H17.001Z\" fill=\"currentColor\"/><path d=\"M12.0008 21V15H15.0008V12.4767L14.2524 12.2821C13.5408 12.0971 12.7874 12 12.0008 12C7.24298 12 3.91741 15.5211 3.50515 19.9064L3.40234 21H12.0008Z\" fill=\"currentColor\"/>",
|
|
@@ -18410,6 +18452,20 @@
|
|
|
18410
18452
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
18411
18453
|
"componentName": "IconPeopleGear"
|
|
18412
18454
|
},
|
|
18455
|
+
{
|
|
18456
|
+
"category": "People",
|
|
18457
|
+
"svg": "<path d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V20H2V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\" fill=\"currentColor\"/><path d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\" fill=\"currentColor\"/><path d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\" fill=\"currentColor\"/><path d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\" fill=\"currentColor\"/>",
|
|
18458
|
+
"iconName": "people-group-2, user, friend",
|
|
18459
|
+
"variant": {
|
|
18460
|
+
"join": "square",
|
|
18461
|
+
"filled": "on",
|
|
18462
|
+
"radius": "0",
|
|
18463
|
+
"stroke": "2"
|
|
18464
|
+
},
|
|
18465
|
+
"createdAt": "2026-02-13T08:00:42.259331+00:00",
|
|
18466
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
18467
|
+
"componentName": "IconPeopleGroup2"
|
|
18468
|
+
},
|
|
18413
18469
|
{
|
|
18414
18470
|
"category": "People",
|
|
18415
18471
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.5 22H3.5V2H20.5V22ZM12 16C10 16 7.48535 17.522 7.48535 20.0156H16.5156C16.5156 17.522 14 16 12 16ZM12 9.5C10.6193 9.5 9.5 10.6193 9.5 12C9.5 13.3807 10.6193 14.5 12 14.5C13.3807 14.5 14.5 13.3807 14.5 12C14.5 10.6193 13.3807 9.5 12 9.5ZM9 6H15V4H9V6Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -220,6 +220,8 @@ export type CentralIconName =
|
|
|
220
220
|
| "IconBatteryMedium"
|
|
221
221
|
| "IconBaymax"
|
|
222
222
|
| "IconBean"
|
|
223
|
+
| "IconBecepsLeftArm"
|
|
224
|
+
| "IconBecepsRightArm"
|
|
223
225
|
| "IconBed"
|
|
224
226
|
| "IconBee"
|
|
225
227
|
| "IconBeer"
|
|
@@ -292,6 +294,7 @@ export type CentralIconName =
|
|
|
292
294
|
| "IconBranch"
|
|
293
295
|
| "IconBranchSimple"
|
|
294
296
|
| "IconBreakfast"
|
|
297
|
+
| "IconBridge"
|
|
295
298
|
| "IconBrightness"
|
|
296
299
|
| "IconBrilliance"
|
|
297
300
|
| "IconBrokenChainLink1"
|
|
@@ -908,6 +911,7 @@ export type CentralIconName =
|
|
|
908
911
|
| "IconGlobe2"
|
|
909
912
|
| "IconGoatHead"
|
|
910
913
|
| "IconGold"
|
|
914
|
+
| "IconGoldenGateBridge"
|
|
911
915
|
| "IconGoldMedal"
|
|
912
916
|
| "IconGolfBall"
|
|
913
917
|
| "IconGooey"
|
|
@@ -1306,7 +1310,6 @@ export type CentralIconName =
|
|
|
1306
1310
|
| "IconPencilWave"
|
|
1307
1311
|
| "IconPeople"
|
|
1308
1312
|
| "IconPeople2"
|
|
1309
|
-
| "IconPeople21"
|
|
1310
1313
|
| "IconPeopleAdd"
|
|
1311
1314
|
| "IconPeopleAdd2"
|
|
1312
1315
|
| "IconPeopleAdded"
|
|
@@ -1314,6 +1317,7 @@ export type CentralIconName =
|
|
|
1314
1317
|
| "IconPeopleCopy"
|
|
1315
1318
|
| "IconPeopleEdit"
|
|
1316
1319
|
| "IconPeopleGear"
|
|
1320
|
+
| "IconPeopleGroup2"
|
|
1317
1321
|
| "IconPeopleIdCard"
|
|
1318
1322
|
| "IconPeopleLike"
|
|
1319
1323
|
| "IconPeopleNoise"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.190",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1938,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -268,7 +268,7 @@
|
|
|
268
268
|
]
|
|
269
269
|
},
|
|
270
270
|
"Building": {
|
|
271
|
-
"count":
|
|
271
|
+
"count": 25,
|
|
272
272
|
"icons": [
|
|
273
273
|
"IconBank",
|
|
274
274
|
"IconBank2",
|
|
@@ -277,6 +277,7 @@
|
|
|
277
277
|
"IconCourt",
|
|
278
278
|
"IconDoor",
|
|
279
279
|
"IconGarage",
|
|
280
|
+
"IconGoldenGateBridge",
|
|
280
281
|
"IconGovernment",
|
|
281
282
|
"IconHome",
|
|
282
283
|
"IconHomeCircle",
|
|
@@ -314,7 +315,7 @@
|
|
|
314
315
|
]
|
|
315
316
|
},
|
|
316
317
|
"Code": {
|
|
317
|
-
"count":
|
|
318
|
+
"count": 65,
|
|
318
319
|
"icons": [
|
|
319
320
|
"IconAgent",
|
|
320
321
|
"IconAgenticCoding",
|
|
@@ -336,6 +337,7 @@
|
|
|
336
337
|
"IconBrackets2",
|
|
337
338
|
"IconBranch",
|
|
338
339
|
"IconBranchSimple",
|
|
340
|
+
"IconBridge",
|
|
339
341
|
"IconBug",
|
|
340
342
|
"IconBugFace",
|
|
341
343
|
"IconChanges",
|
|
@@ -907,8 +909,10 @@
|
|
|
907
909
|
]
|
|
908
910
|
},
|
|
909
911
|
"Hands": {
|
|
910
|
-
"count":
|
|
912
|
+
"count": 22,
|
|
911
913
|
"icons": [
|
|
914
|
+
"IconBecepsLeftArm",
|
|
915
|
+
"IconBecepsRightArm",
|
|
912
916
|
"IconBlip",
|
|
913
917
|
"IconFistbump",
|
|
914
918
|
"IconHand4Finger",
|
|
@@ -1275,7 +1279,6 @@
|
|
|
1275
1279
|
"IconHead",
|
|
1276
1280
|
"IconPeople",
|
|
1277
1281
|
"IconPeople2",
|
|
1278
|
-
"IconPeople21",
|
|
1279
1282
|
"IconPeopleAdd",
|
|
1280
1283
|
"IconPeopleAdd2",
|
|
1281
1284
|
"IconPeopleAdded",
|
|
@@ -1283,6 +1286,7 @@
|
|
|
1283
1286
|
"IconPeopleCopy",
|
|
1284
1287
|
"IconPeopleEdit",
|
|
1285
1288
|
"IconPeopleGear",
|
|
1289
|
+
"IconPeopleGroup2",
|
|
1286
1290
|
"IconPeopleIdCard",
|
|
1287
1291
|
"IconPeopleLike",
|
|
1288
1292
|
"IconPeopleNoise",
|
|
@@ -2263,7 +2267,7 @@
|
|
|
2263
2267
|
"IconArrowRotateClockwise": "arrow-rotate-clockwise, rotate-right",
|
|
2264
2268
|
"IconArrowRotateCounterClockwise": "arrow-rotate-counter-clockwise, rotate-left",
|
|
2265
2269
|
"IconArrowRotateLeftRight": "arrow-rotate-left-right, repeat, refresh",
|
|
2266
|
-
"IconArrowRotateRightLeft": "arrow-rotate-right-left, repeat, refresh",
|
|
2270
|
+
"IconArrowRotateRightLeft": "arrow-rotate-right-left, repeat, refresh, routines",
|
|
2267
2271
|
"IconArrowRounded": "arrow-rounded, share, arrow, login",
|
|
2268
2272
|
"IconArrowsAllSides": "arrows-all-sides, move, focus",
|
|
2269
2273
|
"IconArrowsAllSides2": "arrows-all-sides-2, scan, move, focus",
|
|
@@ -2357,6 +2361,8 @@
|
|
|
2357
2361
|
"IconBatteryMedium": "battery-medium, power",
|
|
2358
2362
|
"IconBaymax": "baymax, bot, help",
|
|
2359
2363
|
"IconBean": "bean, java",
|
|
2364
|
+
"IconBecepsLeftArm": "beceps-left-arm, strong, flex, power",
|
|
2365
|
+
"IconBecepsRightArm": "beceps-right-arm, strong, flex, power",
|
|
2360
2366
|
"IconBed": "bed",
|
|
2361
2367
|
"IconBee": "bee, fly",
|
|
2362
2368
|
"IconBeer": "beer, cheers",
|
|
@@ -2429,6 +2435,7 @@
|
|
|
2429
2435
|
"IconBranch": "branch",
|
|
2430
2436
|
"IconBranchSimple": "branch-simple",
|
|
2431
2437
|
"IconBreakfast": "breakfast, fried-egg",
|
|
2438
|
+
"IconBridge": "bridge, connection",
|
|
2432
2439
|
"IconBrightness": "brightness",
|
|
2433
2440
|
"IconBrilliance": "brilliance, yin yang, ballance",
|
|
2434
2441
|
"IconBrokenChainLink1": "broken-chain-link-1, unlink",
|
|
@@ -3045,6 +3052,7 @@
|
|
|
3045
3052
|
"IconGlobe2": "globe-2, network, translate",
|
|
3046
3053
|
"IconGoatHead": "goat-head, goated",
|
|
3047
3054
|
"IconGold": "gold, goldbars",
|
|
3055
|
+
"IconGoldenGateBridge": "golden-gate-bridge, silicon-valley, sf",
|
|
3048
3056
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
3049
3057
|
"IconGolfBall": "golf-ball",
|
|
3050
3058
|
"IconGooey": "gooey, morph, liquid-glass",
|
|
@@ -3442,8 +3450,7 @@
|
|
|
3442
3450
|
"IconPencilSparkle": "pencil-sparkle, magic pencil, magic brush",
|
|
3443
3451
|
"IconPencilWave": "pencil-wave, signature, write",
|
|
3444
3452
|
"IconPeople": "people, user, person, avatar",
|
|
3445
|
-
"IconPeople2": "people-2",
|
|
3446
|
-
"IconPeople21": "people-2, user, group, friend",
|
|
3453
|
+
"IconPeople2": "people-2, user, person, member",
|
|
3447
3454
|
"IconPeopleAdd": "people-add, user-add",
|
|
3448
3455
|
"IconPeopleAdd2": "people-add-2, user-add, user, person",
|
|
3449
3456
|
"IconPeopleAdded": "people-added, user-added",
|
|
@@ -3451,6 +3458,7 @@
|
|
|
3451
3458
|
"IconPeopleCopy": "people-copy, members",
|
|
3452
3459
|
"IconPeopleEdit": "people-edit, edit-user, edit-rights, user-rights",
|
|
3453
3460
|
"IconPeopleGear": "people-gear, user-settings, preferences, person",
|
|
3461
|
+
"IconPeopleGroup2": "people-group-2, user, friend",
|
|
3454
3462
|
"IconPeopleIdCard": "people-id-card, profile, user-account, badge, person",
|
|
3455
3463
|
"IconPeopleLike": "people-like, inner circle",
|
|
3456
3464
|
"IconPeopleNoise": "people-noise, audio-quality, user-noise",
|
package/index.d.ts
CHANGED
|
@@ -219,6 +219,8 @@ export { IconBatteryLow, default as IconBatteryLowDefault, } from "./IconBattery
|
|
|
219
219
|
export { IconBatteryMedium, default as IconBatteryMediumDefault, } from "./IconBatteryMedium";
|
|
220
220
|
export { IconBaymax, default as IconBaymaxDefault } from "./IconBaymax";
|
|
221
221
|
export { IconBean, default as IconBeanDefault } from "./IconBean";
|
|
222
|
+
export { IconBecepsLeftArm, default as IconBecepsLeftArmDefault, } from "./IconBecepsLeftArm";
|
|
223
|
+
export { IconBecepsRightArm, default as IconBecepsRightArmDefault, } from "./IconBecepsRightArm";
|
|
222
224
|
export { IconBed, default as IconBedDefault } from "./IconBed";
|
|
223
225
|
export { IconBee, default as IconBeeDefault } from "./IconBee";
|
|
224
226
|
export { IconBeer, default as IconBeerDefault } from "./IconBeer";
|
|
@@ -291,6 +293,7 @@ export { IconBrainSideview, default as IconBrainSideviewDefault, } from "./IconB
|
|
|
291
293
|
export { IconBranch, default as IconBranchDefault } from "./IconBranch";
|
|
292
294
|
export { IconBranchSimple, default as IconBranchSimpleDefault, } from "./IconBranchSimple";
|
|
293
295
|
export { IconBreakfast, default as IconBreakfastDefault, } from "./IconBreakfast";
|
|
296
|
+
export { IconBridge, default as IconBridgeDefault } from "./IconBridge";
|
|
294
297
|
export { IconBrightness, default as IconBrightnessDefault, } from "./IconBrightness";
|
|
295
298
|
export { IconBrilliance, default as IconBrillianceDefault, } from "./IconBrilliance";
|
|
296
299
|
export { IconBrokenChainLink1, default as IconBrokenChainLink1Default, } from "./IconBrokenChainLink1";
|
|
@@ -908,6 +911,7 @@ export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
|
|
|
908
911
|
export { IconGoatHead, default as IconGoatHeadDefault } from "./IconGoatHead";
|
|
909
912
|
export { IconGold, default as IconGoldDefault } from "./IconGold";
|
|
910
913
|
export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
|
|
914
|
+
export { IconGoldenGateBridge, default as IconGoldenGateBridgeDefault, } from "./IconGoldenGateBridge";
|
|
911
915
|
export { IconGolfBall, default as IconGolfBallDefault } from "./IconGolfBall";
|
|
912
916
|
export { IconGooey, default as IconGooeyDefault } from "./IconGooey";
|
|
913
917
|
export { IconGoogle, default as IconGoogleDefault } from "./IconGoogle";
|
|
@@ -1305,7 +1309,6 @@ export { IconPencilSparkle, default as IconPencilSparkleDefault, } from "./IconP
|
|
|
1305
1309
|
export { IconPencilWave, default as IconPencilWaveDefault, } from "./IconPencilWave";
|
|
1306
1310
|
export { IconPeople, default as IconPeopleDefault } from "./IconPeople";
|
|
1307
1311
|
export { IconPeople2, default as IconPeople2Default } from "./IconPeople2";
|
|
1308
|
-
export { IconPeople21, default as IconPeople21Default } from "./IconPeople21";
|
|
1309
1312
|
export { IconPeopleAdd, default as IconPeopleAddDefault, } from "./IconPeopleAdd";
|
|
1310
1313
|
export { IconPeopleAdd2, default as IconPeopleAdd2Default, } from "./IconPeopleAdd2";
|
|
1311
1314
|
export { IconPeopleAdded, default as IconPeopleAddedDefault, } from "./IconPeopleAdded";
|
|
@@ -1313,6 +1316,7 @@ export { IconPeopleCircle, default as IconPeopleCircleDefault, } from "./IconPeo
|
|
|
1313
1316
|
export { IconPeopleCopy, default as IconPeopleCopyDefault, } from "./IconPeopleCopy";
|
|
1314
1317
|
export { IconPeopleEdit, default as IconPeopleEditDefault, } from "./IconPeopleEdit";
|
|
1315
1318
|
export { IconPeopleGear, default as IconPeopleGearDefault, } from "./IconPeopleGear";
|
|
1319
|
+
export { IconPeopleGroup2, default as IconPeopleGroup2Default, } from "./IconPeopleGroup2";
|
|
1316
1320
|
export { IconPeopleIdCard, default as IconPeopleIdCardDefault, } from "./IconPeopleIdCard";
|
|
1317
1321
|
export { IconPeopleLike, default as IconPeopleLikeDefault, } from "./IconPeopleLike";
|
|
1318
1322
|
export { IconPeopleNoise, default as IconPeopleNoiseDefault, } from "./IconPeopleNoise";
|