@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.72 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconDistortion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDistortion: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"distortion, liquid, material\">\n <g clipPath=\"url(#clip0_13463_26295)\">\n <path\n d=\"M7.53125 11.6318C8.75698 11.6843 9.87079 12.0293 11.0381 12.4492C10.6036 13.6543 10.1949 14.9545 10.1328 16.4053C10.073 17.8039 10.3339 19.3062 11.1201 21H3V12.7959C4.77583 11.8462 6.2376 11.5765 7.53125 11.6318Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 21H12.7969C11.8469 19.2239 11.5765 17.7625 11.6318 16.4688C11.6844 15.2427 12.0292 14.1286 12.4492 12.9609C13.6543 13.3955 14.9544 13.8052 16.4053 13.8672C17.8039 13.9269 19.3062 13.6654 21 12.8789V21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 11.2031C19.2239 12.1531 17.7625 12.4235 16.4688 12.3682C15.2426 12.3157 14.1287 11.9699 12.9609 11.5498C13.3954 10.3449 13.8051 9.04519 13.8672 7.59473C13.927 6.19616 13.6661 4.69375 12.8799 3H21V11.2031Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.2031 3C12.1531 4.77603 12.4235 6.23749 12.3682 7.53125C12.3157 8.75708 11.9698 9.87067 11.5498 11.0381C10.345 10.6037 9.04506 10.1948 7.59473 10.1328C6.19615 10.0731 4.69377 10.3346 3 11.1211V3H11.2031Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_13463_26295\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconDistortion;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gCACpCC,EAAA,cAAC,KAAE,SAAS,2BACVA,EAAA,cAAC,QACC,EAAE,uNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,qBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDistortion","props","React","CentralIconBase","IconDistortion_default"]}