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.69 kB
{"version":3,"sources":["../src/IconFocusMagic/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFocusMagic: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"focus-magic\">\n <path\n d=\"M4 8V7C4 5.34315 5.34315 4 7 4H8M4 16V17C4 18.6569 5.34315 20 7 20H8M16 4H17C18.6569 4 20 5.34315 20 7V8M20 16V17C20 18.6569 18.6569 20 17 20H16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12.1845 9.28984C12.2813 9.24145 12.3598 9.16299 12.4081 9.06623L13.0531 7.77639C13.2373 7.40787 13.7632 7.40787 13.9475 7.77639L14.5924 9.06623C14.6408 9.16299 14.7192 9.24145 14.816 9.28984L16.1058 9.93475C16.4744 10.119 16.4744 10.6449 16.1058 10.8292L14.816 11.4741C14.7192 11.5225 14.6408 11.6009 14.5924 11.6977L13.9475 12.9875C13.7632 13.3561 13.2373 13.3561 13.0531 12.9875L12.4081 11.6977C12.3598 11.6009 12.2813 11.5225 12.1845 11.4741L10.8947 10.8292C10.5262 10.6449 10.5262 10.119 10.8947 9.93475L12.1845 9.28984Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.5775 13.5934C8.63556 13.5643 8.68263 13.5172 8.71166 13.4592L9.23194 12.4186C9.3425 12.1975 9.65804 12.1975 9.7686 12.4186L10.2889 13.4592C10.3179 13.5172 10.365 13.5643 10.423 13.5934L11.4636 14.1136C11.6847 14.2242 11.6847 14.5397 11.4636 14.6503L10.423 15.1706C10.365 15.1996 10.3179 15.2467 10.2889 15.3047L9.7686 16.3453C9.65804 16.5664 9.3425 16.5664 9.23194 16.3453L8.71166 15.3047C8.68263 15.2467 8.63556 15.1996 8.5775 15.1706L7.53693 14.6503C7.31582 14.5397 7.31581 14.2242 7.53693 14.1136L8.5775 13.5934Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFocusMagic;\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,eACpCC,EAAA,cAAC,QACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,ghBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,ygBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFocusMagic","props","React","CentralIconBase","IconFocusMagic_default"]}