@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 • 2.9 kB
Source Map (JSON)
{"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=\"M12.0001 6.99996C14.2092 6.99996 16 8.79091 16.0001 11V14C16.0001 16.0397 14.4732 17.7216 12.5001 17.9677V20H15.0001V21H9.00011V20H11.5001V17.9677C9.52715 17.7215 8.00011 16.0396 8.00011 14V11C8.00021 8.79098 9.79113 7.00008 12.0001 6.99996Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.30187 4.57418C9.22732 1.02738 15.2881 1.14563 19.0714 4.92867L19.4259 5.30172C22.9728 9.22724 22.8546 15.288 19.0714 19.0713L18.3644 18.3642C21.7692 14.9594 21.8757 9.50462 18.6837 5.97164L18.3644 5.63571C14.9595 2.23106 9.5047 2.12448 5.97179 5.31637L5.63585 5.63571C2.12122 9.15036 2.12134 14.8495 5.63585 18.3642L4.92882 19.0713C1.02379 15.166 1.02367 8.83385 4.92882 4.92867L5.30187 4.57418Z\"\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,oPACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPodcast2","props","React","CentralIconBase","IconPodcast2_default"]}