@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.07 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFortuneTellerBall/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFortuneTellerBall: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fortune-teller-ball,future\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2.5 11.4057C2.5 14.3372 3.8545 16.9525 5.97195 18.6757L4.64221 22H19.3578L18.028 18.6757C20.1455 16.9525 21.5 14.3372 21.5 11.4057C21.5 6.20345 17.239 2 12 2C6.76097 2 2.5 6.20345 2.5 11.4057ZM6.85776 20.5L7.25776 19.5H16.7422L17.1422 20.5H6.85776ZM13 6C13 6 12.8116 6.93838 12.375 7.375C11.9384 7.81162 11 8 11 8C11 8 11.9384 8.18838 12.375 8.625C12.8116 9.06162 13 10 13 10C13 10 13.1884 9.06162 13.625 8.625C14.0616 8.18838 15 8 15 8C15 8 14.0616 7.81162 13.625 7.375C13.1884 6.93838 13 6 13 6ZM15.5 9C15.5 9 15.2645 10.173 14.7188 10.7188C14.173 11.2645 13 11.5 13 11.5C13 11.5 14.173 11.7355 14.7188 12.2812C15.2645 12.827 15.5 14 15.5 14C15.5 14 15.7355 12.827 16.2812 12.2812C16.827 11.7355 18 11.5 18 11.5C18 11.5 16.827 11.2645 16.2812 10.7188C15.7355 10.173 15.5 9 15.5 9Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFortuneTellerBall;\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,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kxBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFortuneTellerBall","props","React","CentralIconBase","IconFortuneTellerBall_default"]}