UNPKG

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

Version:

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

1 lines 3.31 kB
{"version":3,"sources":["../src/IconMegaphone/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMegaphone: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"megaphone, loud, speak, promote, feedback\"\n >\n <path\n d=\"M18.2461 2.75H18.9961V1.7335L18.0248 2.03338L18.2461 2.75ZM18.2461 19.25L18.0248 19.9666L18.9961 20.2665V19.25H18.2461ZM2.74609 14.4643H1.99609V15.0177L2.52483 15.1809L2.74609 14.4643ZM2.74609 7.53571L2.52483 6.81909L1.99609 6.98235V7.53571H2.74609ZM13.2825 18.4999L13.5325 17.7928L12.1182 17.2929L11.8683 18.0001L13.2825 18.4999ZM18.2461 14.75C20.3172 14.75 21.9961 13.0711 21.9961 11H20.4961C20.4961 12.2426 19.4887 13.25 18.2461 13.25V14.75ZM18.2461 8.75C19.4887 8.75 20.4961 9.75736 20.4961 11H21.9961C21.9961 8.92893 20.3172 7.25 18.2461 7.25V8.75ZM17.4961 2.75V19.25H18.9961V2.75H17.4961ZM18.4674 18.5334L2.96735 13.7477L2.52483 15.1809L18.0248 19.9666L18.4674 18.5334ZM18.0248 2.03338L2.52483 6.81909L2.96735 8.25233L18.4674 3.46662L18.0248 2.03338ZM3.49609 14.4643V7.53571H1.99609V14.4643H3.49609ZM9.74609 19.5C8.50345 19.5 7.49609 18.4926 7.49609 17.25H5.99609C5.99609 19.3211 7.67503 21 9.74609 21V19.5ZM11.8683 18.0001C11.559 18.875 10.7246 19.5 9.74609 19.5V21C11.38 21 12.7681 19.9554 13.2825 18.4999L11.8683 18.0001ZM7.49609 17.25V15.75H5.99609V17.25H7.49609ZM5.99829 6.25V15.75H7.49829V6.25H5.99829Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMegaphone;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6CAEVC,EAAA,cAAC,QACC,EAAE,6lCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMegaphone","props","React","CentralIconBase","IconMegaphone_default"]}