@central-icons-react/round-outlined-radius-3-stroke-2
Version:
A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.
1 lines • 3.68 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconIcebowl/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconIcebowl: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"icebowl, cooling, vibe\">\n <path\n d=\"M15.0893 8.66362C15.3572 8.73058 15.52 9.00197 15.4531 9.26984L15.2111 10.2391C15.1441 10.5071 14.8726 10.67 14.6047 10.603L13.5748 10.3455C13.307 10.2786 13.1441 10.0072 13.211 9.73932L13.4531 8.77007C13.52 8.50211 13.7915 8.33917 14.0594 8.40615L15.0893 8.66362ZM8.38675 8.03387C8.53993 8.26363 8.47784 8.57407 8.24807 8.72724L7.41606 9.28192C7.1863 9.4351 6.87586 9.37301 6.72269 9.14324L6.27739 8.47529C6.12421 8.24553 6.1863 7.9351 6.41606 7.78192L7.24807 7.22724C7.47784 7.07407 7.78827 7.13616 7.94145 7.36592L8.38675 8.03387ZM18.4707 7.3952C18.7005 7.54838 18.7626 7.85881 18.6094 8.08858L18.0547 8.92059C17.9016 9.15035 17.5911 9.21244 17.3614 9.05926L16.6934 8.61396C16.4636 8.46079 16.4016 8.15035 16.5547 7.92059L17.1094 7.08858C17.2626 6.85881 17.573 6.79672 17.8028 6.9499L18.4707 7.3952ZM12.5557 7.4519C12.6792 7.69889 12.5791 7.99923 12.3321 8.12272L11.2265 8.67551C10.9796 8.799 10.6792 8.69889 10.5557 8.4519L10.1084 7.55726C9.98492 7.31028 10.085 7.00994 10.332 6.88644L11.4376 6.33366C11.6846 6.21016 11.9849 6.31028 12.1084 6.55726L12.5557 7.4519Z\"\n fill=\"currentColor\"\n />\n <ellipse\n cx=\"12\"\n cy=\"8.5\"\n rx=\"10\"\n ry=\"4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M22 8.5V9.5C22 15.0228 17.5228 19.5 12 19.5C6.47715 19.5 2 15.0228 2 9.5V8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconIcebowl;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QACC,EAAE,+iCACF,KAAK,eACP,EACAA,EAAA,cAAC,WACC,GAAG,KACH,GAAG,MACH,GAAG,KACH,GAAG,IACH,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconIcebowl","props","React","CentralIconBase","IconIcebowl_default"]}