UNPKG

@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.

11 lines 2.51 kB
{ "version": 3, "sources": ["src/CentralIconBase/index.tsx", "src/IconGooey/index.tsx"], "sourcesContent": [ "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", "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGooey: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"gooey, morph, liquid-glass\"><path d=\"M7.22754 6.27295C8.86913 6.27302 10.3487 6.96405 11.3925 8.07087C12.1742 8.89967 13.1638 9.61377 14.303 9.61377C15.1875 9.61377 15.9918 9.15114 16.7548 8.70381C17.3203 8.37227 17.9786 8.18216 18.6816 8.18213C20.7902 8.18213 22.4997 9.89101 22.5 11.9995C22.5 14.1082 20.7904 15.8179 18.6816 15.8179C17.9786 15.8178 17.3202 15.6277 16.7547 15.2962C15.9918 14.8488 15.1875 14.3862 14.3031 14.3862C13.1638 14.3862 12.1742 15.1004 11.3926 15.9292C10.3488 17.0361 8.86922 17.727 7.22754 17.7271C4.06454 17.7271 1.50014 15.1635 1.5 12.0005C1.5 8.8374 4.06445 6.27295 7.22754 6.27295Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconGooey;\n" ], "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAurB,EAAvrB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,mkBAAmkB,OAAO,eAAe,YAAY,IAAG,CAAI,GAGjrB", "debugId": "5AA33F141608C55B64756E2164756E21", "names": [] }