@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 • 3.56 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconLiveFull/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLiveFull: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"live-full, signal, podcast\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.51992 5.46007L5.98959 5.9904C4.45057 7.52942 3.5 9.65339 3.5 12.0008C3.5 14.3482 4.45057 16.4722 5.98959 18.0112L6.51992 18.5415L5.45926 19.6022L4.92893 19.0719C3.12011 17.2631 2 14.762 2 12.0008C2 9.2396 3.12011 6.73857 4.92893 4.92974L5.45926 4.39941L6.51992 5.46007ZM18.5407 4.39941L19.0711 4.92974C20.8799 6.73857 22 9.2396 22 12.0008C22 14.762 20.8799 17.2631 19.0711 19.0719L18.5407 19.6022L17.4801 18.5415L18.0104 18.0112C19.5494 16.4722 20.5 14.3482 20.5 12.0008C20.5 9.65339 19.5494 7.52942 18.0104 5.9904L17.4801 5.46007L18.5407 4.39941ZM9.42692 8.36707L8.89659 8.8974C8.10153 9.69245 7.61111 10.7886 7.61111 12.0008C7.61111 13.213 8.10153 14.3092 8.89659 15.1042L9.42692 15.6346L8.36626 16.6952L7.83593 16.1649C6.77107 15.1 6.11111 13.6268 6.11111 12.0008C6.11111 10.3748 6.77107 8.9016 7.83593 7.83674L8.36626 7.30641L9.42692 8.36707ZM15.6337 7.30641L16.1641 7.83674C17.2289 8.9016 17.8889 10.3748 17.8889 12.0008C17.8889 13.6268 17.2289 15.1 16.1641 16.1649L15.6337 16.6952L14.5731 15.6346L15.1034 15.1042C15.8985 14.3092 16.3889 13.213 16.3889 12.0008C16.3889 10.7886 15.8985 9.69245 15.1034 8.8974L14.5731 8.36707L15.6337 7.30641ZM10.5 12.0001C10.5 11.1716 11.1716 10.5001 12 10.5001C12.8284 10.5001 13.5 11.1716 13.5 12.0001C13.5 12.8285 12.8284 13.5001 12 13.5001C11.1716 13.5001 10.5 12.8285 10.5 12.0001Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLiveFull;\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,8BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,izCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLiveFull","props","React","CentralIconBase","IconLiveFull_default"]}