@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.11 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconBroomSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBroomSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"broom-sparkle, clean, brush\">\n <path\n d=\"M11.5008 1.38208L12.5402 3.46077L14.6189 4.50011L12.5402 5.53946L11.5008 7.61815L10.4615 5.53946L8.38281 4.50011L10.4615 3.46077L11.5008 1.38208Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.6852 2.32556L20.8254 1.8149L14.9932 11.6345L13.8617 11.2405C11.8749 10.5488 9.83249 11.5955 8.76228 13.2061C8.2352 13.9993 7.84345 14.4666 7.28948 14.9515C6.76582 15.4099 6.09712 15.885 5.01926 16.6508L3.96875 17.3977L8.04284 19.0575L10.5 17.3977L9.70269 19.7113L15.5972 22.0859L15.8307 21.8578C17.8507 19.8843 18.9023 18.1636 19.2518 15.7816C19.4875 14.1755 18.3547 12.8048 16.8961 12.297L15.9569 11.97L21.6852 2.32556Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.00085 5.38208L4.79484 7.7941L2.38281 9.00011L4.79484 10.2061L6.00085 12.6181L7.20686 10.2061L9.61888 9.00011L7.20686 7.7941L6.00085 5.38208Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBroomSparkle;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QACC,EAAE,oJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2aACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBroomSparkle","props","React","CentralIconBase","IconBroomSparkle_default"]}