UNPKG

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

Version:

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

1 lines 2.94 kB
{"version":3,"sources":["../src/IconPodcast2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPodcast2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"podcast-2, broadcast, mic\">\n <path\n d=\"M19.0715 4.92889C15.2883 1.14565 9.2275 1.02754 5.30198 4.5744L4.92893 4.92889C1.02369 8.83414 1.02369 15.1662 4.92893 19.0715L5.98948 18.0109C2.67002 14.6915 2.67002 9.3089 5.98948 5.98944L6.30686 5.68866C9.64355 2.67372 14.7952 2.77365 18.011 5.98944L18.3117 6.30682C21.3267 9.64351 21.2268 14.7951 18.011 18.0109L19.0715 19.0715C22.8548 15.2882 22.9729 9.22746 19.426 5.30194L19.0715 4.92889Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.7502 17.4289C14.6008 17.0778 16.0002 15.4529 16.0002 13.5002V11.0002C16.0002 8.79104 14.2094 7.00018 12.0002 7.00018C9.79108 7.00018 8.00022 8.79104 8.00022 11.0002V13.5002C8.00022 15.4529 9.39967 17.0778 11.2502 17.4289V19.5002H9.00022V21.0002H15.0002V19.5002H12.7502V17.4289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPodcast2;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,8YACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4RACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPodcast2","props","React","CentralIconBase","IconPodcast2_default"]}