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 3.19 kB
{"version":3,"sources":["../src/IconSwitchVoice/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSwitchVoice: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"switch-voice, change-voice\">\n <path\n d=\"M4.02637 14.0986C4.00894 14.2295 4 14.3637 4 14.5C4 15.9621 5.04614 17.1793 6.43066 17.4453V15L9.85938 18.25L6.43066 21.5V18.9619C4.21432 18.6819 2.5 16.7923 2.5 14.5C2.5 14.2974 2.51391 14.0976 2.54004 13.9014L4.02637 14.0986Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18 16.5H16.5V3H18V16.5Z\" fill=\"currentColor\" />\n <path\n d=\"M7.56934 10.0371C9.78574 10.317 11.5 12.2076 11.5 14.5C11.5 14.7026 11.4861 14.9024 11.46 15.0986L9.97363 14.9014C9.99106 14.7705 10 14.6363 10 14.5C10 13.0378 8.95395 11.8197 7.56934 11.5537V14L4.14062 10.75L7.56934 7.5V10.0371Z\"\n fill=\"currentColor\"\n />\n <path d=\"M14.5 11.5H13V6H14.5V11.5Z\" fill=\"currentColor\" />\n <path d=\"M21.5 11.5H20V8H21.5V11.5Z\" fill=\"currentColor\" />\n <path d=\"M11 8H9.5V4H11V8Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSwitchVoice;\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,8BACpCC,EAAA,cAAC,QACC,EAAE,sOACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,2BAA2B,KAAK,eAAe,EACvDA,EAAA,cAAC,QACC,EAAE,wOACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,6BAA6B,KAAK,eAAe,EACzDA,EAAA,cAAC,QAAK,EAAE,6BAA6B,KAAK,eAAe,EACzDA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,CAClD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSwitchVoice","props","React","CentralIconBase","IconSwitchVoice_default"]}