@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.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=\"M17.6486 19.1389C19.9846 17.4087 21.5 14.6316 21.5 11.5C21.5 6.25329 17.2467 2 12 2C6.75329 2 2.5 6.25329 2.5 11.5C2.5 14.6316 4.01537 17.4087 6.3514 19.1389L5.2785 22H18.7215L17.6486 19.1389ZM7.0965 20L6.7215 21H17.2785L16.9035 20H7.0965ZM16.5 9C16.5 9 16.2645 10.173 15.7188 10.7188C15.173 11.2645 14 11.5 14 11.5C14 11.5 15.173 11.7355 15.7188 12.2812C16.2645 12.827 16.5 14 16.5 14C16.5 14 16.7355 12.827 17.2812 12.2812C17.827 11.7355 19 11.5 19 11.5C19 11.5 17.827 11.2645 17.2812 10.7188C16.7355 10.173 16.5 9 16.5 9ZM13.375 7.375C13.8116 6.93838 14 6 14 6C14 6 14.1884 6.93838 14.625 7.375C15.0616 7.81162 16 8 16 8C16 8 15.0616 8.18838 14.625 8.625C14.1884 9.06162 14 10 14 10C14 10 13.8116 9.06162 13.375 8.625C12.9384 8.18838 12 8 12 8C12 8 12.9384 7.81162 13.375 7.375Z\"\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,gxBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFortuneTellerBall","props","React","CentralIconBase","IconFortuneTellerBall_default"]}