UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 3.81 kB
{"version":3,"sources":["../src/IconMagicHands/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicHands: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"magic-hands, rainbow-hands\">\n <path\n d=\"M5.0345 9.21397C6.14106 6.45009 8.8438 4.5 12.0002 4.5C15.1566 4.5 17.8593 6.45009 18.9659 9.21397L20.3584 8.65645C19.0318 5.34277 15.7905 3 12.0002 3C8.20992 3 4.96864 5.34277 3.64196 8.65645L5.0345 9.21397Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.35631 10.1427C8.0942 8.29966 9.89633 7 12.0002 7C14.1041 7 15.9062 8.29966 16.6441 10.1427L18.0366 9.58518C17.0786 7.19234 14.738 5.5 12.0002 5.5C9.26245 5.5 6.92178 7.19234 5.96377 9.58518L7.35631 10.1427Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.67812 11.0714C10.0473 10.1492 10.9489 9.5 12.0002 9.5C13.0515 9.5 13.9531 10.1492 14.3223 11.0714L15.7148 10.5139C15.1255 9.0419 13.6854 8 12.0002 8C10.315 8 8.87491 9.0419 8.28558 10.5139L9.67812 11.0714Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.18364 13.4544C7.58154 11.8001 5.75242 10.9472 4.09818 11.5493C2.44394 12.1514 1.591 13.9805 2.1931 15.6347L2.89851 17.5729C3.60686 19.519 5.75877 20.5225 7.70494 19.8141L8.17478 19.6431C10.1209 18.9348 11.1244 16.7829 10.4161 14.8367L9.7198 12.9237L8.1928 13.4795L8.18364 13.4544Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.9051 11.5493C18.2508 10.9472 16.4217 11.8001 15.8196 13.4544L15.8104 13.4795L14.2834 12.9237L13.5872 14.8367C12.8788 16.7829 13.8823 18.9348 15.8284 19.6431L16.2983 19.8141C18.2445 20.5225 20.3964 19.519 21.1047 17.5729L21.8101 15.6347C22.4122 13.9805 21.5593 12.1514 19.9051 11.5493Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMagicHands;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8RACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMagicHands","props","React","CentralIconBase","IconMagicHands_default"]}