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.58 kB
{ "version": 3, "sources": ["src/CentralIconBase/index.tsx", "src/IconSunburstChart/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 IconSunburstChart: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"sunburst-chart\"><path d=\"M12 8C14.2091 8 16 9.79086 16 12M12 8C10.8954 8 9.89543 8.44771 9.17157 9.17157M12 8V3C16.9706 3 21 7.02944 21 12H16M16 12C16 13.1046 15.5523 14.1046 14.8284 14.8284M9.17157 9.17157L5.63604 5.63604C4.00736 7.26472 3 9.51472 3 12C3 14.4853 4.00736 16.7353 5.63604 18.364M9.17157 9.17157C8.44771 9.89543 8 10.8954 8 12C8 13.1046 8.44771 14.1046 9.17157 14.8284M14.8284 14.8284C14.1046 15.5523 13.1046 16 12 16M14.8284 14.8284L18.364 18.364C16.7353 19.9926 14.4853 21 12 21M12 16C10.8954 16 9.89543 15.5523 9.17157 14.8284M12 16V21M9.17157 14.8284L5.63604 18.364M5.63604 18.364C7.26472 19.9926 9.51472 21 12 21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconSunburstChart;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAiuB,EAAjuB,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,EAAE,kmBAAkmB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG3tB", "debugId": "E4689B86A40E3C9464756E2164756E21", "names": [] }