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 2.9 kB
{"version":3,"sources":["../src/IconRockingHorse/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRockingHorse: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rocking-horse, child, kids, toy\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21.998 7.5L19.998 9L17.998 8L16.998 10L19.3174 18.3516C19.8154 18.0596 20.316 17.7405 20.8154 17.3877L21.4277 16.9551L22.293 18.1797L21.6807 18.6123C18.514 20.8493 15.2746 22 11.998 22C8.72149 22 5.48205 20.8493 2.31543 18.6123L1.70312 18.1797L2.56836 16.9551L3.18066 17.3877C3.67016 17.7335 4.16031 18.0477 4.64844 18.335L6.65723 9.5H5.74805C4.50541 9.5 3.49805 10.5074 3.49805 11.75V12.5H1.99805V11.75C1.99805 9.67893 3.67698 8 5.74805 8H11.998L12.7676 6.1543C13.8156 3.63893 16.2731 2 18.998 2L21.998 7.5ZM8.62207 20.042C9.75256 20.3475 10.8779 20.5 11.998 20.5C13.1179 20.5 14.2429 20.3474 15.373 20.042L13.998 15H9.99805L8.62207 20.042Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRockingHorse;\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,mCACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qoBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRockingHorse","props","React","CentralIconBase","IconRockingHorse_default"]}