@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.39 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSparklesThree/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSparklesThree: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"sparkles-three, ai 3 stars, sparkles, ✨\"\n >\n <path\n d=\"M5 15.5C7.71674 15.5 9.55872 16.0992 10.7298 17.2702C11.9008 18.4413 12.5 20.2833 12.5 23H13.5C13.5 20.2833 14.0992 18.4413 15.2702 17.2702C16.4413 16.0992 18.2833 15.5 21 15.5V14.5C18.2833 14.5 16.4413 13.9008 15.2702 12.7298C14.0992 11.5587 13.5 9.71674 13.5 7H12.5C12.5 9.71674 11.9008 11.5587 10.7298 12.7298C9.55872 13.9008 7.71674 14.5 5 14.5V15.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M2 9C3.15424 9 3.87122 9.25541 4.3079 9.69209C4.74459 10.1288 5 10.8458 5 12H6C6 10.8458 6.25541 10.1288 6.69209 9.69209C7.12878 9.25541 7.84576 9 9 9V8C7.84576 8 7.12878 7.74459 6.69209 7.30791C6.25541 6.87122 6 6.15424 6 5H5C5 6.15424 4.74459 6.87122 4.3079 7.30791C3.87122 7.74459 3.15424 8 2 8V9Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8 4C8.80702 4 9.27399 4.17902 9.54749 4.45251C9.82098 4.72601 10 5.19298 10 6H11C11 5.19298 11.179 4.72601 11.4525 4.45251C11.726 4.17902 12.193 4 13 4V3C12.193 3 11.726 2.82098 11.4525 2.54749C11.179 2.27399 11 1.80702 11 1H10C10 1.80702 9.82098 2.27399 9.54749 2.54749C9.27399 2.82098 8.80702 3 8 3V4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparklesThree;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,gDAEVC,EAAA,cAAC,QACC,EAAE,qWACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+SACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mTACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSparklesThree","props","React","CentralIconBase","IconSparklesThree_default"]}