UNPKG

@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.3 kB
{"version":3,"sources":["../src/IconPaintBucketDrop/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPaintBucketDrop: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"paint-bucket-drop\">\n <path\n d=\"M20.0761 16.1201L20.079 16.123C20.079 16.123 20.0821 16.1254 20.0839 16.127C20.0882 16.1307 20.095 16.136 20.1025 16.1426C20.1174 16.1558 20.1378 16.1752 20.164 16.1992C20.2165 16.2474 20.2903 16.3167 20.3779 16.4043C20.5525 16.5789 20.7858 16.8292 21.0204 17.1309C21.4733 17.7131 22.0009 18.5758 22.0009 19.5C22.0009 20.8159 21.0541 22 19.7509 22C18.4476 22 17.5009 20.8159 17.5009 19.5C17.5009 18.5758 18.0286 17.7131 18.4814 17.1309C18.716 16.8292 18.9494 16.5789 19.124 16.4043C19.2115 16.3167 19.2854 16.2474 19.3378 16.1992C19.364 16.1752 19.3844 16.1558 19.3993 16.1426C19.4068 16.136 19.4136 16.1307 19.4179 16.127C19.4198 16.1253 19.4228 16.123 19.4228 16.123L19.4257 16.1201L19.7509 15.8418L20.0761 16.1201Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.9755 2.34668L21.6327 13.0039L10.8154 21.2754C9.42195 22.3409 7.45422 22.211 6.2138 20.9707L2.6054 17.3613C1.36499 16.1209 1.23414 14.1532 2.29974 12.7598L4.98528 9.24707L11.7685 12.7998L12.2284 11.9219L1.76849 6.44336L2.23333 5.55664L6.21282 7.64062L10.5722 1.94238L10.9755 2.34668Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPaintBucketDrop;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,EAAE,gtBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iSACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPaintBucketDrop","props","React","CentralIconBase","IconPaintBucketDrop_default"]}