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.91 kB
{"version":3,"sources":["../src/IconDices/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDices: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"dices, random, roll\">\n <path\n d=\"M2.7857 15.0425C2.08548 13.5409 2.73515 11.756 4.23677 11.0557L6.95569 9.78788C8.45731 9.08767 10.2423 9.73733 10.9425 11.239L12.2103 13.9579C12.9105 15.4595 12.2609 17.2444 10.7593 17.9447L8.04033 19.2125C6.53871 19.9127 4.75377 19.2631 4.05355 17.7614L2.7857 15.0425Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14.7205 4.89341C15.0983 3.85545 16.246 3.32028 17.2839 3.69806L20.103 4.72412C21.141 5.10191 21.6762 6.24959 21.2984 7.28755L20.2723 10.1066C19.8945 11.1446 18.7468 11.6798 17.7089 11.302L14.8898 10.2759C13.8519 9.89813 13.3167 8.75044 13.6945 7.71249L14.7205 4.89341Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6.41045 13.3519C6.64386 13.8524 6.4273 14.4474 5.92676 14.6808C5.42622 14.9142 4.83124 14.6977 4.59784 14.1971C4.36443 13.6966 4.58099 13.1016 5.08153 12.8682C5.58207 12.6348 6.17705 12.8514 6.41045 13.3519Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.3987 14.8031C10.6321 15.3036 10.4156 15.8986 9.91504 16.132C9.4145 16.3654 8.81952 16.1488 8.58612 15.6483C8.35271 15.1478 8.56927 14.5528 9.06981 14.3194C9.57035 14.086 10.1653 14.3025 10.3987 14.8031Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.4391 7.84205C18.2503 8.36103 17.6764 8.62861 17.1574 8.43972C16.6385 8.25083 16.3709 7.67699 16.5598 7.15801C16.7487 6.63903 17.3225 6.37144 17.8415 6.56034C18.3605 6.74923 18.628 7.32307 18.4391 7.84205Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDices;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,gRACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,gRACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDices","props","React","CentralIconBase","IconDices_default"]}