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.5 kB
{"version":3,"sources":["../src/IconSlots/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSlots: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"slots,slot-mashine, gambling\">\n <path\n d=\"M2 8V7C2 5.34315 3.34315 4 5 4H7C7 4 7.25 2 9.5 2C11.75 2 12 4 12 4H14C15.6569 4 17 5.34315 17 7V8M2 8V16M2 8H7M17 8V16M17 8H12M17 16V17C17 18.6569 15.6569 20 14 20H5C3.34315 20 2 18.6569 2 17V16M17 16H12M2 16H7M7 16V8M7 16H12M7 8H12M12 8V16M17 15H18.5C20.1569 15 21.5 13.6569 21.5 12V10M21.5 10C22.3284 10 23 9.32843 23 8.5C23 7.67157 22.3284 7 21.5 7C20.6716 7 20 7.67157 20 8.5C20 9.32843 20.6716 10 21.5 10Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.75 11.75C3.75 11.3358 4.08579 11 4.5 11C4.91421 11 5.25 11.3358 5.25 11.75V12.25C5.25 12.6642 4.91421 13 4.5 13C4.08579 13 3.75 12.6642 3.75 12.25V11.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.75 11.75C8.75 11.3358 9.08579 11 9.5 11C9.91421 11 10.25 11.3358 10.25 11.75V12.25C10.25 12.6642 9.91421 13 9.5 13C9.08579 13 8.75 12.6642 8.75 12.25V11.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.75 11.75C13.75 11.3358 14.0858 11 14.5 11C14.9142 11 15.25 11.3358 15.25 11.75V12.25C15.25 12.6642 14.9142 13 14.5 13C14.0858 13 13.75 12.6642 13.75 12.25V11.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSlots;\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,gCACpCC,EAAA,cAAC,QACC,EAAE,8ZACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,+JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSlots","props","React","CentralIconBase","IconSlots_default"]}