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.52 kB
{"version":3,"sources":["../src/IconSubscriptionTick1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSubscriptionTick1: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"subscription-tick-1,verify\">\n <path\n d=\"M9.50094 12.5001L10.6474 13.6465C10.8427 13.8418 11.1592 13.8418 11.3545 13.6465L14.501 10.5001M8.54899 4.99935L7.33831 4.8073C6.38438 4.65597 5.51718 5.38364 5.50056 6.34935L5.47946 7.57499C5.47002 8.12312 5.17872 8.62767 4.70875 8.9099L3.65786 9.541C2.82984 10.0382 2.63326 11.1531 3.24128 11.9036L4.01294 12.856C4.35804 13.282 4.45921 13.8557 4.28061 14.374L3.88124 15.533C3.56657 16.4461 4.13259 17.4265 5.08075 17.6106L6.2841 17.8442C6.82226 17.9486 7.26856 18.3231 7.4649 18.835L7.90392 19.9795C8.24983 20.8813 9.31361 21.2685 10.1583 20.8L11.2302 20.2055C11.7096 19.9396 12.2922 19.9396 12.7717 20.2055L13.8436 20.8C14.6883 21.2685 15.7521 20.8813 16.098 19.9795L16.537 18.835C16.7333 18.3231 17.1796 17.9486 17.7178 17.8442L18.9211 17.6106C19.8693 17.4265 20.4353 16.4461 20.1207 15.533L19.7213 14.374C19.5427 13.8557 19.6439 13.282 19.989 12.856L20.7606 11.9036C21.3686 11.1531 21.1721 10.0382 20.344 9.541L19.2931 8.9099C18.8232 8.62767 18.5319 8.12312 18.5224 7.57499L18.5013 6.34935C18.4847 5.38364 17.6175 4.65598 16.6636 4.8073L15.4529 4.99935C14.9115 5.08524 14.364 4.88598 14.0044 4.47215L13.2005 3.54682C12.567 2.81773 11.4349 2.81773 10.8014 3.54682L9.99745 4.47215C9.6379 4.88598 9.09043 5.08524 8.54899 4.99935Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick1;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,EAAE,ktCACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSubscriptionTick1","props","React","CentralIconBase","IconSubscriptionTick1_default"]}