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.62 kB
{ "version": 3, "sources": ["src/CentralIconBase/index.tsx", "src/IconGoatHead/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 IconGoatHead: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"goat-head, goated\"><path d=\"M8.38522 16.848L8.39712 16.851C8.74938 18.2195 10.233 20.9999 12.002 21C13.7709 20.9999 15.2546 18.2195 15.6068 16.8511L15.6187 16.8481C16.6903 16.5775 16.7786 14.4515 16.89 13.5552C17.7245 13.5087 20.5356 12.8269 21.2618 10.6474C22.3512 7.37818 17.369 10.6753 17.812 7.71418C18.2485 4.79704 20.7171 3.23487 20.7171 3.23487C16.9042 2.48019 15.0885 3.5697 13.7159 6.13605C12.8719 7.71418 11.1061 7.71418 10.2734 6.13904C8.9151 3.5697 7.0997 2.4803 3.28682 3.23479C3.28682 3.23479 5.75533 4.79704 6.19183 7.71418C6.63482 10.6753 1.65273 7.3781 2.74212 10.6474C3.46839 12.8269 6.27941 13.5086 7.11395 13.5551C7.22535 14.4515 7.31364 16.5775 8.38522 16.848Z\" stroke=\"currentColor\" strokeWidth=\"1.9\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconGoatHead;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAoxB,EAApxB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,gpBAAgpB,OAAO,eAAe,YAAY,MAAM,eAAe,QAAO,CAAI,GAG9wB", "debugId": "423E8CAC618A4E9164756E2164756E21", "names": [] }