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.13 kB
{"version":3,"sources":["../src/IconNoFlash/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNoFlash: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"no-flash\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M7.72522 6.86224L3.66437 3.2526C3.25159 2.88568 2.61952 2.92286 2.2526 3.33565C1.88568 3.74843 1.92286 4.3805 2.33565 4.74742L20.3356 20.7474C20.7484 21.1143 21.3805 21.0772 21.7474 20.6644C22.1143 20.2516 22.0772 19.6195 21.6644 19.2526L17.3973 15.4597L20.8157 10.3321C21.4802 9.33528 20.7656 8.00006 19.5676 8.00006H14.0019V2.40144C14.0019 0.917322 12.077 0.334547 11.2538 1.5694L7.72522 6.86224ZM9.23452 8.20384L15.888 14.1181L18.6333 10.0001H13.5019C12.6734 10.0001 12.0019 9.32848 12.0019 8.50006V4.05283L9.23452 8.20384Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.48524 10.2222L6.99454 11.5638L5.37037 14.0001H10.5019C11.3303 14.0001 12.0019 14.6716 12.0019 15.5001V19.9473L13.648 17.478L15.1573 18.8196L12.7499 22.4307C11.9267 23.6656 10.0019 23.0828 10.0019 21.5987V16.0001H4.43612C3.23807 16.0001 2.52349 14.6648 3.18804 13.668L5.48524 10.2222Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNoFlash;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,YACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ihBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconNoFlash","props","React","CentralIconBase","IconNoFlash_default"]}