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.42 kB
{"version":3,"sources":["../src/IconBack10s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBack10s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"back-10s\">\n <path\n d=\"M4.58203 9C5.76881 6.06817 8.64314 4 12.0005 4C15.3579 4 18.2322 6.06817 19.419 9M4 5V9H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M7.42578 19.9653V14.2588H7.40039L6.73389 14.7095C6.40381 14.9189 6.22607 14.9824 6.0166 14.9824C5.59766 14.9824 5.29297 14.6777 5.29297 14.2588C5.29297 13.9478 5.4834 13.6685 5.85791 13.4336L6.89258 12.7417C7.3877 12.4243 7.83838 12.2783 8.26367 12.2783C9.00635 12.2783 9.50146 12.7798 9.50146 13.5542V19.9653C9.50146 20.6826 9.12695 21.0825 8.4668 21.0825C7.80029 21.0825 7.42578 20.6763 7.42578 19.9653Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.7837 16.9058V16.4424C10.7837 13.8589 12.1104 12.1768 14.2432 12.1768C16.3823 12.1768 17.6582 13.8271 17.6582 16.4424V16.9058C17.6582 19.4829 16.3188 21.1904 14.1987 21.1904C12.0786 21.1904 10.7837 19.521 10.7837 16.9058ZM12.8911 16.4487V16.8994C12.8911 18.5498 13.3862 19.5146 14.2241 19.5146C15.0557 19.5146 15.5571 18.5435 15.5571 16.8994V16.4487C15.5571 14.811 15.0557 13.8525 14.2178 13.8525C13.3799 13.8525 12.8911 14.8047 12.8911 16.4487Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBack10s;\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,EAAE,4FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,wZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mcACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBack10s","props","React","CentralIconBase","IconBack10s_default"]}