UNPKG

@central-icons-react/square-filled-radius-0-stroke-1

Version:

A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.

1 lines 3.5 kB
{"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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.9814 21H7.01855L12 14.1504L16.9814 21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 15.2398 20.458 18.1179 18.0693 19.9453L17.4805 19.1357C19.6196 17.4904 21 14.9074 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 14.9071 4.37977 17.4903 6.51855 19.1357L5.92969 19.9453C3.54141 18.1179 2 15.2395 2 12C2 6.47715 6.47715 2 12 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 5C15.866 5 19 8.13401 19 12C19 14.2425 17.9438 16.2365 16.3037 17.5176L15.7158 16.708C17.1062 15.6092 18 13.9098 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 13.9095 6.89318 15.6091 8.2832 16.708L7.69531 17.5176C6.05553 16.2364 5 14.2422 5 12C5 8.13401 8.13401 5 12 5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 13.2449 15.4308 14.3562 14.5391 15.0898L13.9482 14.2783C14.5911 13.7281 15 12.9125 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 12.9122 9.40827 13.7281 10.0508 14.2783L9.45996 15.0898C8.56857 14.3562 8 13.2446 8 12C8 9.79086 9.79086 8 12 8Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,6CACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oSACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iSACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAirplayAudio","props","React","CentralIconBase","IconAirplayAudio_default"]}