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/IconSparkleHightlight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSparkleHightlight: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"sparkle-hightlight, special, ai, magic\"\n >\n <path\n d=\"M6.56055 18.5L3 22.0605L1.93945 21L5.5 17.4395L6.56055 18.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M22.0605 21L21 22.0605L17.4395 18.5L18.5 17.4395L22.0605 21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.2578 3.45215L15.458 8.54102L20.5479 10.7422L21 10.9385V13.0615L20.5479 13.2578L15.458 15.458L13.2578 20.5479L13.0615 21H10.9385L10.7422 20.5479L8.54102 15.458L3.45215 13.2578L3 13.0615V10.9385L3.45215 10.7422L8.54102 8.54102L10.7422 3.45215L10.9385 3H13.0615L13.2578 3.45215Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.56055 5.5L5.5 6.56055L1.93945 3L3 1.93945L6.56055 5.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M22.0605 3L18.5 6.56055L17.4395 5.5L21 1.93945L22.0605 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkleHightlight;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,EAAE,+DACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+DACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0RACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4DACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4DACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSparkleHightlight","props","React","CentralIconBase","IconSparkleHightlight_default"]}