@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.66 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconPan/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPan: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pan, cooking, skills\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.88672 15.6289L2.44824 17.8516C2.96682 19.9066 5.06686 21.1433 7.12793 20.6357L14.1738 18.9004C16.2381 18.3919 17.5077 16.3192 16.9883 14.2607L16.7959 13.498L23.9785 11.7285L23.6191 10.2715L1.88672 15.6289Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1.94727 9.63867L4.44141 11.5518L5.35449 10.3613L3.45508 8.90527L2.86035 8.44824L1.94727 9.63867Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.99902 8.25C8.44674 8.25 7.99902 8.69772 7.99902 9.25C7.99902 9.80228 8.44674 10.25 8.99902 10.25C9.55131 10.25 9.99902 9.80228 9.99902 9.25C9.99902 8.69772 9.55131 8.25 8.99902 8.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.499 6.25C12.9467 6.25 12.499 6.69772 12.499 7.25C12.499 7.80228 12.9467 8.25 13.499 8.25C14.0513 8.25 14.499 7.80228 14.499 7.25C14.499 6.69772 14.0513 6.25 13.499 6.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.49902 5C3.94674 5 3.49902 5.44772 3.49902 6C3.49902 6.55228 3.94674 7 4.49902 7C5.05131 7 5.49902 6.55228 5.49902 6C5.49902 5.44772 5.05131 5 4.49902 5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.74316 5.33496L9.08398 6.00586L10.5049 3.16504L9.16406 2.49414L7.74316 5.33496Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPan;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,mNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4LACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPan","props","React","CentralIconBase","IconPan_default"]}