@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.17 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconAirplayAudio/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAirplayAudio: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"airplay-audio, audio-stream\">\n <path\n d=\"M9.04 19.9999C8.62075 19.9999 8.38766 19.5149 8.64957 19.1876L11.6093 15.4879C11.8094 15.2377 12.19 15.2377 12.3901 15.4879L15.3498 19.1876C15.6117 19.5149 15.3786 19.9999 14.9594 19.9999H9.04Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 17.658C2.13593 14.1235 2.34795 8.92413 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C21.6521 8.92413 21.8641 14.1235 19 17.658\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M7.53115 14.245C7.19134 13.57 7 12.8073 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12C17 12.8073 16.8087 13.57 16.4689 14.245\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAirplayAudio;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,oMACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,qJACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAirplayAudio","props","React","CentralIconBase","IconAirplayAudio_default"]}