UNPKG

@central-icons-react/round-outlined-radius-3-stroke-2

Version:

A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.

1 lines 3.73 kB
{"version":3,"sources":["../src/IconHatSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHatSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"hat-sparkle, magic hat\">\n <path\n d=\"M13.9691 3.29803L14.0001 3.23595L14.0312 3.29803C14.1763 3.58832 14.4117 3.8237 14.702 3.96885L14.7641 3.99989L14.702 4.03092C14.4117 4.17607 14.1763 4.41145 14.0312 4.70174L14.0001 4.76382L13.9691 4.70174C13.8239 4.41145 13.5886 4.17607 13.2983 4.03092L13.2362 3.99989L13.2983 3.96885C13.5886 3.8237 13.8239 3.58832 13.9691 3.29803Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8.6932 4.99996C8.81087 4.91421 8.91446 4.81063 9.0002 4.69296C9.08594 4.81063 9.18953 4.91422 9.3072 4.99996C9.18953 5.0857 9.08594 5.18929 9.0002 5.30695C8.91446 5.18929 8.81087 5.0857 8.6932 4.99996Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M18 13V17.9994C18 19.2029 17.282 20.3109 16.1078 20.5748C14.9071 20.8448 13.5019 21 12 21C10.4981 21 9.09291 20.8448 7.89219 20.5748C6.718 20.3109 6 19.2029 6 17.9994V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20 11C20 12.1046 16.4183 13 12 13C7.58172 13 4 12.1046 4 11C4 9.89543 7.58172 9 12 9C16.4183 9 20 9.89543 20 11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHatSparkle;\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,0BACpCC,EAAA,cAAC,QACC,EAAE,gVACF,OAAO,eACP,YAAY,IACZ,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,6MACF,OAAO,eACP,YAAY,IACZ,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,4KACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHatSparkle","props","React","CentralIconBase","IconHatSparkle_default"]}