@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.49 → 1.1.50

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 IconPersona: FC<CentralIconBaseProps>;
4
+ export default IconPersona;
@@ -0,0 +1,2 @@
1
+ "use strict";var y=Object.create;var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var c in o)t(r,c,{get:o[c],enumerable:!0})},i=(r,o,c,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!I.call(r,e)&&e!==c&&t(r,e,{get:()=>o[e],enumerable:!(C=m(o,e))||C.enumerable});return r};var u=(r,o,c)=>(c=r!=null?y(B(r)):{},i(o||!r||!r.__esModule?t(c,"default",{value:r,enumerable:!0}):c,r)),g=r=>i(t({},"__esModule",{value:!0}),r);var v={};P(v,{IconPersona:()=>s,default:()=>k});module.exports=g(v);var l=u(require("react"));var p=u(require("react")),f=require("react-native-svg"),x=({children:r,size:o=24,...c})=>p.default.createElement(f.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 n=require("react-native-svg"),s=r=>l.default.createElement(x,{...r},l.default.createElement(n.Path,{d:"M11.5 2.53101C9.52684 2.77705 8 4.46025 8 6.50006C8 8.53987 9.52684 10.2231 11.5 10.4691",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),l.default.createElement(n.Path,{d:"M11.5 20.5H4C4.3787 16.184 7.29771 12.7666 11.5 12.5149",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),l.default.createElement(n.Circle,{cx:"13.9992",cy:"3.24922",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"13.9992",cy:"6.49922",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"17.0016",cy:"4.99961",r:"0.65",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"17.0016",cy:"7.99961",r:"0.65",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"13.9992",cy:"9.74922",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"13.9992",cy:"12.9992",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"17.0016",cy:"12.9996",r:"0.65",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"20.0016",cy:"16.4996",r:"0.65",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"13.9992",cy:"16.4992",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"16.9992",cy:"16.4992",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"13.9992",cy:"19.9992",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"16.9992",cy:"19.9992",r:"0.8",fill:"currentColor"}),l.default.createElement(n.Circle,{cx:"19.9992",cy:"19.9992",r:"0.8",fill:"currentColor"})),k=s;0&&(module.exports={IconPersona});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPersona/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconPersona: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 2.53101C9.52684 2.77705 8 4.46025 8 6.50006C8 8.53987 9.52684 10.2231 11.5 10.4691\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11.5 20.5H4C4.3787 16.184 7.29771 12.7666 11.5 12.5149\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"13.9992\" cy=\"3.24922\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"6.49922\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"17.0016\" cy=\"4.99961\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"17.0016\" cy=\"7.99961\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"9.74922\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"12.9992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"17.0016\" cy=\"12.9996\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"20.0016\" cy=\"16.4996\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"16.4992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"16.9992\" cy=\"16.4992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"16.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"19.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPersona;\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,iBAAAE,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,EAA6B,4BAEhBC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0DACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,CAChE,EAIGE,EAAQJ","names":["IconPersona_exports","__export","IconPersona","IconPersona_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPersona","props","React","CentralIconBase","IconPersona_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import C from"react";import{Svg as i}from"react-native-svg";var c=({children:n,size:l=24,...t})=>C.createElement(i,{...t,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as o,Path as e}from"react-native-svg";var u=n=>r.createElement(c,{...n},r.createElement(e,{d:"M11.5 2.53101C9.52684 2.77705 8 4.46025 8 6.50006C8 8.53987 9.52684 10.2231 11.5 10.4691",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M11.5 20.5H4C4.3787 16.184 7.29771 12.7666 11.5 12.5149",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{cx:"13.9992",cy:"3.24922",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"13.9992",cy:"6.49922",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"17.0016",cy:"4.99961",r:"0.65",fill:"currentColor"}),r.createElement(o,{cx:"17.0016",cy:"7.99961",r:"0.65",fill:"currentColor"}),r.createElement(o,{cx:"13.9992",cy:"9.74922",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"13.9992",cy:"12.9992",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"17.0016",cy:"12.9996",r:"0.65",fill:"currentColor"}),r.createElement(o,{cx:"20.0016",cy:"16.4996",r:"0.65",fill:"currentColor"}),r.createElement(o,{cx:"13.9992",cy:"16.4992",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"16.9992",cy:"16.4992",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"13.9992",cy:"19.9992",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"16.9992",cy:"19.9992",r:"0.8",fill:"currentColor"}),r.createElement(o,{cx:"19.9992",cy:"19.9992",r:"0.8",fill:"currentColor"})),P=u;export{u as IconPersona,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPersona/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconPersona: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 2.53101C9.52684 2.77705 8 4.46025 8 6.50006C8 8.53987 9.52684 10.2231 11.5 10.4691\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11.5 20.5H4C4.3787 16.184 7.29771 12.7666 11.5 12.5149\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"13.9992\" cy=\"3.24922\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"6.49922\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"17.0016\" cy=\"4.99961\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"17.0016\" cy=\"7.99961\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"9.74922\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"12.9992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"17.0016\" cy=\"12.9996\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"20.0016\" cy=\"16.4996\" r=\"0.65\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"16.4992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"16.9992\" cy=\"16.4992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"13.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"16.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\" />\n <Circle cx=\"19.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPersona;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0DACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,OAAO,KAAK,eAAe,EAC/DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,CAChE,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconPersona","props","React","CentralIconBase","IconPersona_default"]}
package/README.md CHANGED
@@ -1167,6 +1167,7 @@ Below is a complete list of available icons:
1167
1167
  - IconPeopleRemove
1168
1168
  - IconPeopleRemove2
1169
1169
  - IconPeopleVersus
1170
+ - IconPersona
1170
1171
  - IconSteveJobs
1171
1172
  - IconStreaming
1172
1173
  - IconSurfing
@@ -15512,6 +15512,20 @@
15512
15512
  "packageName": "round-outlined-radius-0-stroke-1",
15513
15513
  "componentName": "IconPerplexity"
15514
15514
  },
15515
+ {
15516
+ "category": "People",
15517
+ "svg": "<path d=\"M11.5 2.53101C9.52684 2.77705 8 4.46025 8 6.50006C8 8.53987 9.52684 10.2231 11.5 10.4691\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.5 20.5H4C4.3787 16.184 7.29771 12.7666 11.5 12.5149\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"13.9992\" cy=\"3.24922\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"13.9992\" cy=\"6.49922\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"17.0016\" cy=\"4.99961\" r=\"0.65\" fill=\"currentColor\"/><circle cx=\"17.0016\" cy=\"7.99961\" r=\"0.65\" fill=\"currentColor\"/><circle cx=\"13.9992\" cy=\"9.74922\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"13.9992\" cy=\"12.9992\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"17.0016\" cy=\"12.9996\" r=\"0.65\" fill=\"currentColor\"/><circle cx=\"20.0016\" cy=\"16.4996\" r=\"0.65\" fill=\"currentColor\"/><circle cx=\"13.9992\" cy=\"16.4992\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"16.9992\" cy=\"16.4992\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"13.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"16.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"19.9992\" cy=\"19.9992\" r=\"0.8\" fill=\"currentColor\"/>",
15518
+ "iconName": "persona, thanos-effect, remove-user, remove-account, blip",
15519
+ "variant": {
15520
+ "join": "round",
15521
+ "filled": "off",
15522
+ "radius": "0",
15523
+ "stroke": "1"
15524
+ },
15525
+ "createdAt": "2025-12-01T13:01:49.190957+00:00",
15526
+ "packageName": "round-outlined-radius-0-stroke-1",
15527
+ "componentName": "IconPersona"
15528
+ },
15515
15529
  {
15516
15530
  "category": "Things",
15517
15531
  "svg": "<path d=\"M14.1667 20.447C13.0833 19.4523 10.9167 19.4523 9.97522 20.447C8.9782 21.3145 7.78564 22.0293 6.56842 20.9702C3.09537 17.9481 8.93929 10.5 12 10.5C15.0607 10.5 20.9046 17.9481 17.4316 20.9702C16.2144 22.0293 15.1637 21.3145 14.1667 20.447Z\" stroke=\"currentColor\"/><path d=\"M10.996 5.57974C11.0649 7.23599 10.2271 8.54296 9.12473 8.49892C8.02235 8.45488 7.07285 7.07652 7.00396 5.42026C6.93508 3.76401 7.77289 2.45704 8.87527 2.50108C9.97765 2.54512 10.9272 3.92348 10.996 5.57974Z\" stroke=\"currentColor\"/><path d=\"M13.004 5.57974C12.9351 7.236 13.7729 8.54296 14.8753 8.49892C15.9777 8.45488 16.9272 7.07652 16.996 5.42026C17.0649 3.76401 16.2271 2.45704 15.1247 2.50108C14.0223 2.54512 13.0728 3.92348 13.004 5.57974Z\" stroke=\"currentColor\"/><path d=\"M6.41394 8.96865C6.73346 10.4793 6.13558 11.83 5.07854 11.9854C4.0215 12.1407 2.90557 11.042 2.58606 9.53135C2.26654 8.02066 2.86442 6.67003 3.92146 6.51465C4.97851 6.35926 6.09443 7.45795 6.41394 8.96865Z\" stroke=\"currentColor\"/><path d=\"M21.4139 9.53135C21.0944 11.042 19.9785 12.1407 18.9215 11.9854C17.8644 11.83 17.2665 10.4793 17.5861 8.96865C17.9056 7.45795 19.0215 6.35926 20.0785 6.51465C21.1356 6.67003 21.7335 8.02066 21.4139 9.53135Z\" stroke=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1107,6 +1107,7 @@ export type CentralIconName =
1107
1107
  | "IconPeopleVersus"
1108
1108
  | "IconPercent"
1109
1109
  | "IconPerplexity"
1110
+ | "IconPersona"
1110
1111
  | "IconPets"
1111
1112
  | "IconPhone"
1112
1113
  | "IconPhoneDynamicIsland"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-0-stroke-1",
3
- "version": "1.1.49",
3
+ "version": "1.1.50",
4
4
  "style": "round-outlined-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-1/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": 1610,
14
+ "totalIcons": 1611,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 61,
@@ -1056,7 +1056,7 @@
1056
1056
  ]
1057
1057
  },
1058
1058
  "People": {
1059
- "count": 31,
1059
+ "count": 32,
1060
1060
  "icons": [
1061
1061
  "IconAura",
1062
1062
  "IconBathMan1",
@@ -1081,6 +1081,7 @@
1081
1081
  "IconPeopleRemove",
1082
1082
  "IconPeopleRemove2",
1083
1083
  "IconPeopleVersus",
1084
+ "IconPersona",
1084
1085
  "IconSteveJobs",
1085
1086
  "IconStreaming",
1086
1087
  "IconSurfing",
@@ -2908,6 +2909,7 @@
2908
2909
  "IconPeopleVersus": "people-versus, vs, match, 1v1",
2909
2910
  "IconPercent": "percent, sales",
2910
2911
  "IconPerplexity": "perplexity",
2912
+ "IconPersona": "persona, thanos-effect, remove-user, remove-account, blip",
2911
2913
  "IconPets": "pets, paw, animal",
2912
2914
  "IconPhone": "phone, iphone, mobile",
2913
2915
  "IconPhoneDynamicIsland": "phone-dynamic-island",
package/index.d.ts CHANGED
@@ -1106,6 +1106,7 @@ export { IconPeopleRemove2, default as IconPeopleRemove2Default, } from "./IconP
1106
1106
  export { IconPeopleVersus, default as IconPeopleVersusDefault, } from "./IconPeopleVersus";
1107
1107
  export { IconPercent, default as IconPercentDefault } from "./IconPercent";
1108
1108
  export { IconPerplexity, default as IconPerplexityDefault, } from "./IconPerplexity";
1109
+ export { IconPersona, default as IconPersonaDefault } from "./IconPersona";
1109
1110
  export { IconPets, default as IconPetsDefault } from "./IconPets";
1110
1111
  export { IconPhone, default as IconPhoneDefault } from "./IconPhone";
1111
1112
  export { IconPhoneDynamicIsland, default as IconPhoneDynamicIslandDefault, } from "./IconPhoneDynamicIsland";