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 4.68 kB
{"version":3,"sources":["../src/IconMagicWand3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicWand3: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"magic-wand-3, magic stick, star\">\n <path\n d=\"M11.6385 1.22087C11.7858 0.926377 12.2063 0.926378 12.3537 1.22087C13.108 2.72874 13.2707 2.89114 14.779 3.64485C15.0737 3.7921 15.0737 4.21235 14.779 4.3596C13.2707 5.11332 13.108 5.27571 12.3537 6.78359C12.2063 7.07808 11.7858 7.07808 11.6385 6.78358C10.8842 5.27571 10.7215 5.11332 9.21319 4.3596C8.91853 4.21235 8.91853 3.7921 9.21319 3.64485C10.7215 2.89114 10.8842 2.72874 11.6385 1.22087Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.64242 5.21641C4.78975 4.92192 5.21024 4.92192 5.35756 5.21642C6.11192 6.72429 6.27462 6.88668 7.7829 7.6404C8.07756 7.78765 8.07756 8.2079 7.7829 8.35514C6.27462 9.10886 6.11192 9.27126 5.35756 10.7791C5.21024 11.0736 4.78975 11.0736 4.64242 10.7791C3.88806 9.27126 3.72536 9.10886 2.21708 8.35514C1.92243 8.2079 1.92243 7.78765 2.21709 7.6404C3.72536 6.88668 3.88806 6.72429 4.64242 5.21641Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.2093 7.6404C15.9146 7.78765 15.9146 8.2079 16.2093 8.35514C17.7176 9.10886 17.8803 9.27126 18.6346 10.7791C18.7819 11.0736 19.2024 11.0736 19.3498 10.7791C20.1041 9.27126 20.2668 9.10886 21.7751 8.35514C22.0698 8.2079 22.0698 7.78765 21.7751 7.6404C20.2668 6.88668 20.1041 6.72429 19.3498 5.21642C19.2024 4.92192 18.7819 4.92192 18.6346 5.21641C17.8803 6.72429 17.7176 6.88668 16.2093 7.6404Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.676 9.75374C15.3977 10.2349 16 11.0093 16 12V22C16 22.5523 15.5523 23 15 23C14.4477 23 14 22.5523 14 22V20.6088C13.3999 20.8635 12.7125 21 12 21C11.2875 21 10.6001 20.8635 10 20.6088V22C10 22.5523 9.55228 23 9 23C8.44772 23 8 22.5523 8 22V12C8 11.0093 8.6023 10.2349 9.32398 9.75374C10.0526 9.26796 11.0017 9 12 9C12.9983 9 13.9474 9.26796 14.676 9.75374ZM10 12C10 11.8861 10.0693 11.6606 10.4334 11.4178C10.7905 11.1798 11.3415 11 12 11C12.6585 11 13.2095 11.1798 13.5666 11.4178C13.9307 11.6606 14 11.8861 14 12C14 12.1139 13.9307 12.3394 13.5666 12.5822C13.2095 12.8202 12.6585 13 12 13C11.3415 13 10.7905 12.8202 10.4334 12.5822C10.0693 12.3394 10 12.1139 10 12ZM12 15C12.7125 15 13.3999 14.8635 14 14.6088V18C14 18.1139 13.9307 18.3394 13.5666 18.5822C13.2095 18.8202 12.6585 19 12 19C11.3415 19 10.7905 18.8202 10.4334 18.5822C10.0693 18.3394 10 18.1139 10 18V14.6088C10.6001 14.8635 11.2875 15 12 15Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMagicWand3;\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,mCACpCC,EAAA,cAAC,QACC,EAAE,8YACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8YACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+YACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,k5BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMagicWand3","props","React","CentralIconBase","IconMagicWand3_default"]}