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.9 kB
{ "version": 3, "sources": ["src/CentralIconBase/index.tsx", "src/IconWizardHat/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 IconWizardHat: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"wizard-hat, magician, fantasy\"><path d=\"M3 20L21 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.75 15.458C12.8305 15.5705 12.9285 15.6695 13.041 15.75C12.9288 15.8304 12.8304 15.9288 12.75 16.041C12.6695 15.9285 12.5705 15.8305 12.458 15.75C12.5707 15.6694 12.6694 15.5707 12.75 15.458Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M10 11.458C10.0805 11.5705 10.1785 11.6695 10.291 11.75C10.1788 11.8304 10.0804 11.9288 10 12.041C9.91946 11.9285 9.82053 11.8305 9.70801 11.75C9.82074 11.6694 9.91937 11.5707 10 11.458Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M5 19.5001L10.7588 4.2805C11.307 2.8316 13.2233 2.52921 14.1911 3.7389L18 8.50007H14.2L19 19.5001\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWizardHat;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAm1B,EAAn1B,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qMAAqM,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,6LAA6L,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,oGAAoG,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,CAAI,GAG70B", "debugId": "5BB146873ACA809F64756E2164756E21", "names": [] }