UNPKG

@central-icons-react/square-outlined-radius-0-stroke-2

Version:

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

1 lines 3.26 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 d=\"M8 20L12 15L16 20H8Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M19.0715 4.92893C15.1663 1.02369 8.83418 1.02369 4.92893 4.92893C1.14851 8.70935 1.02768 14.764 4.56643 18.6898L5.83669 17.102C3.22906 13.959 3.39783 9.28816 6.34299 6.34299C9.46719 3.2188 14.5333 3.2188 17.6574 6.34299L17.9407 6.64182C20.6103 9.59648 20.6849 14.0632 18.1638 17.102L19.434 18.6898C22.8586 14.8907 22.8558 9.09798 19.426 5.30198L19.0715 4.92893Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.8782 15.4951C18.5082 13.2245 18.3619 10.0733 16.4377 7.96214L16.2424 7.75803C13.9725 5.48809 10.337 5.41704 7.98167 7.54514L7.75803 7.75803C5.65022 9.86585 5.43879 13.15 7.12224 15.4951L8.44672 13.8395C7.66675 12.3337 7.90908 10.4351 9.1721 9.1721L9.32151 9.02952C10.8917 7.61125 13.3152 7.65897 14.8283 9.1721L14.9582 9.30784C16.1073 10.5683 16.3062 12.3868 15.5537 13.8395L16.8782 15.4951Z\"\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,EAAE,uBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,4WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8YACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAirplayAudio","props","React","CentralIconBase","IconAirplayAudio_default"]}