@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.270 → 1.1.272

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.
Files changed (43) hide show
  1. package/IconFistbump/index.js +2 -2
  2. package/IconFistbump/index.js.map +3 -3
  3. package/IconFistbump/index.mjs +2 -2
  4. package/IconFistbump/index.mjs.map +3 -3
  5. package/IconHandTouch/index.d.ts +4 -0
  6. package/IconHandTouch/index.js +3 -0
  7. package/IconHandTouch/index.js.map +11 -0
  8. package/IconHandTouch/index.mjs +3 -0
  9. package/IconHandTouch/index.mjs.map +11 -0
  10. package/IconMagicHands/index.js +2 -2
  11. package/IconMagicHands/index.js.map +3 -3
  12. package/IconMagicHands/index.mjs +2 -2
  13. package/IconMagicHands/index.mjs.map +3 -3
  14. package/IconPinch/index.js +2 -2
  15. package/IconPinch/index.js.map +3 -3
  16. package/IconPinch/index.mjs +2 -2
  17. package/IconPinch/index.mjs.map +3 -3
  18. package/IconScript/index.js +2 -2
  19. package/IconScript/index.js.map +3 -3
  20. package/IconScript/index.mjs +2 -2
  21. package/IconScript/index.mjs.map +3 -3
  22. package/IconScript2/index.js +2 -2
  23. package/IconScript2/index.js.map +3 -3
  24. package/IconScript2/index.mjs +2 -2
  25. package/IconScript2/index.mjs.map +3 -3
  26. package/IconTouch/index.js +2 -2
  27. package/IconTouch/index.js.map +3 -3
  28. package/IconTouch/index.mjs +2 -2
  29. package/IconTouch/index.mjs.map +3 -3
  30. package/README.md +1 -0
  31. package/filtered-icons.json +1 -1
  32. package/icons/index.d.ts +1 -1
  33. package/icons/index.js +2 -2
  34. package/icons/index.js.map +3 -3
  35. package/icons/index.mjs +2 -2
  36. package/icons/index.mjs.map +3 -3
  37. package/icons-index.json +4 -4
  38. package/index.d.ts +1 -0
  39. package/index.js +3 -0
  40. package/index.mjs +1 -0
  41. package/license-check.js +1 -1
  42. package/package.json +1 -1
  43. package/skills/central-icons-react-native/SKILL.md +2 -1
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTouch/index.tsx"],
4
4
  "sourcesContent": [
5
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 IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M16.5 8C16.5 4.96243 14.0376 2.5 11 2.5C7.96243 2.5 5.5 4.96243 5.5 8C5.5 8.70558 5.63286 9.38014 5.87494 10M12.5 11.5V8C12.5 7.17157 11.8284 6.5 11 6.5C10.1716 6.5 9.5 7.17157 9.5 8V13.5833L9.43999 13.5538C8.31591 13.0015 7.28488 13.5113 6.81813 14.658L6.61111 15.1667L9.63198 19.6198C10.4288 20.7945 11.7702 21.5 13.2067 21.5H14.1296C17.0956 21.5 19.5 19.1371 19.5 16.2222V14.5C19.5 12.7511 18.0574 11.5 16.2778 11.5H12.5Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.4983 8V11.5H16.276C18.0556 11.5 19.4983 12.7511 19.4983 14.5V16.2222C19.4983 19.1371 17.0939 21.5 14.1279 21.5H13.205C11.7685 21.5 10.4271 20.7945 9.63024 19.6198L6.60938 15.1667L6.8164 14.658C7.28314 13.5113 8.31418 13.0015 9.43825 13.5538L9.49826 13.5833V8C9.49826 7.17157 10.1698 6.5 10.9983 6.5C11.8267 6.5 12.4983 7.17157 12.4983 8Z\" stroke=\"currentColor\"/><Path d=\"M16.5 8C16.5 4.96243 14.0376 2.5 11 2.5C7.96243 2.5 5.5 4.96243 5.5 8C5.5 8.70558 5.63286 9.38014 5.87494 10\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\n"
7
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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAwe,EAAxe,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2aAA2a,OAAO,eAAc,CAAI,GAGle",
9
- "debugId": "C582EEAEB472F8DE64756E2164756E21",
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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAmiB,EAAniB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wVAAwV,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+GAA+G,OAAO,eAAc,CAAI,GAG7hB",
9
+ "debugId": "EFA158F91F46792464756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +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 m=(o)=>{return e.createElement(t,{...o},e.createElement(a,{d:"M16.5 8C16.5 4.96243 14.0376 2.5 11 2.5C7.96243 2.5 5.5 4.96243 5.5 8C5.5 8.70558 5.63286 9.38014 5.87494 10M12.5 11.5V8C12.5 7.17157 11.8284 6.5 11 6.5C10.1716 6.5 9.5 7.17157 9.5 8V13.5833L9.43999 13.5538C8.31591 13.0015 7.28488 13.5113 6.81813 14.658L6.61111 15.1667L9.63198 19.6198C10.4288 20.7945 11.7702 21.5 13.2067 21.5H14.1296C17.0956 21.5 19.5 19.1371 19.5 16.2222V14.5C19.5 12.7511 18.0574 11.5 16.2778 11.5H12.5Z",stroke:"currentColor"}))},i=m;export{i as default,m as IconTouch};
1
+ import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...C})=>{return p.createElement(a,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as n}from"react-native-svg";var s=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M12.4983 8V11.5H16.276C18.0556 11.5 19.4983 12.7511 19.4983 14.5V16.2222C19.4983 19.1371 17.0939 21.5 14.1279 21.5H13.205C11.7685 21.5 10.4271 20.7945 9.63024 19.6198L6.60938 15.1667L6.8164 14.658C7.28314 13.5113 8.31418 13.0015 9.43825 13.5538L9.49826 13.5833V8C9.49826 7.17157 10.1698 6.5 10.9983 6.5C11.8267 6.5 12.4983 7.17157 12.4983 8Z",stroke:"currentColor"}),t.createElement(n,{d:"M16.5 8C16.5 4.96243 14.0376 2.5 11 2.5C7.96243 2.5 5.5 4.96243 5.5 8C5.5 8.70558 5.63286 9.38014 5.87494 10",stroke:"currentColor"}))},i=s;export{i as default,s as IconTouch};
2
2
 
3
- //# debugId=C9EC1BC6594EABED64756E2164756E21
3
+ //# debugId=6648F52FE122E2B164756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTouch/index.tsx"],
4
4
  "sourcesContent": [
5
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 IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M16.5 8C16.5 4.96243 14.0376 2.5 11 2.5C7.96243 2.5 5.5 4.96243 5.5 8C5.5 8.70558 5.63286 9.38014 5.87494 10M12.5 11.5V8C12.5 7.17157 11.8284 6.5 11 6.5C10.1716 6.5 9.5 7.17157 9.5 8V13.5833L9.43999 13.5538C8.31591 13.0015 7.28488 13.5113 6.81813 14.658L6.61111 15.1667L9.63198 19.6198C10.4288 20.7945 11.7702 21.5 13.2067 21.5H14.1296C17.0956 21.5 19.5 19.1371 19.5 16.2222V14.5C19.5 12.7511 18.0574 11.5 16.2778 11.5H12.5Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.4983 8V11.5H16.276C18.0556 11.5 19.4983 12.7511 19.4983 14.5V16.2222C19.4983 19.1371 17.0939 21.5 14.1279 21.5H13.205C11.7685 21.5 10.4271 20.7945 9.63024 19.6198L6.60938 15.1667L6.8164 14.658C7.28314 13.5113 8.31418 13.0015 9.43825 13.5538L9.49826 13.5833V8C9.49826 7.17157 10.1698 6.5 10.9983 6.5C11.8267 6.5 12.4983 7.17157 12.4983 8Z\" stroke=\"currentColor\"/><Path d=\"M16.5 8C16.5 4.96243 14.0376 2.5 11 2.5C7.96243 2.5 5.5 4.96243 5.5 8C5.5 8.70558 5.63286 9.38014 5.87494 10\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\n"
7
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,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAwe,EAAxe,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2aAA2a,OAAO,eAAc,CAAI,GAGle",
9
- "debugId": "C9EC1BC6594EABED64756E2164756E21",
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,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAmiB,EAAniB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wVAAwV,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+GAA+G,OAAO,eAAc,CAAI,GAG7hB",
9
+ "debugId": "6648F52FE122E2B164756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -1072,6 +1072,7 @@ Below is a complete list of available icons:
1072
1072
  - IconHandshake
1073
1073
  - IconBecepsLeftArm
1074
1074
  - IconBecepsRightArm
1075
+ - IconHandTouch
1075
1076
 
1076
1077
  ### Health & Medical
1077
1078