@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.94 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSignalTower/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSignalTower: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"signal-tower, live, podcast\">\n <path\n d=\"M19.2926 2.65789L18.9502 2.29346L18.2214 2.97811L18.5637 3.34254C21.812 6.80066 21.8121 12.1996 18.5641 15.6579L18.2218 16.0224L18.9507 16.707L19.293 16.3425C22.9025 12.4994 22.9023 6.50084 19.2926 2.65789Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.42974 3.34956L5.77168 2.98476L5.04209 2.30088L4.70014 2.66568C1.09767 6.50895 1.09995 12.502 4.707 16.3425L5.0493 16.707L5.77821 16.0224L5.43591 15.6579C2.19009 12.202 2.18803 6.80795 5.42974 3.34956Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.46088 5.93351L8.14226 6.31884C6.61925 8.16073 6.61925 10.8399 8.14226 12.6817L8.46088 13.0671L7.69021 13.7043L7.37159 13.319C5.5428 11.1073 5.5428 7.89329 7.37159 5.6816L7.69021 5.29627L8.46088 5.93351Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.3098 5.29627L16.6284 5.6816C18.4572 7.89329 18.4572 11.1073 16.6284 13.319L16.3098 13.7043L15.5391 13.0671L15.8577 12.6817C17.3808 10.8399 17.3808 8.16073 15.8577 6.31884L15.5391 5.93351L16.3098 5.29627Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 7.50022C10.8954 7.50022 10 8.39565 10 9.50022C10 10.1712 10.3304 10.765 10.8374 11.1278L7.36541 21.3121L8.31192 21.6348L9.38053 18.5002H14.6195L15.6881 21.6348L16.6346 21.3121L13.1626 11.1278C13.6696 10.765 14 10.1712 14 9.50022C14 8.39565 13.1046 7.50022 12 7.50022ZM14.2786 17.5002L12.2287 11.4873C12.1536 11.4958 12.0773 11.5002 12 11.5002C11.9227 11.5002 11.8464 11.4958 11.7713 11.4873L9.72144 17.5002H14.2786Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSignalTower;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,saACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSignalTower","props","React","CentralIconBase","IconSignalTower_default"]}