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.61 kB
{ "version": 3, "sources": ["src/CentralIconBase/index.tsx", "src/IconMedium/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 IconMedium: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"medium\"><path d=\"M6.76859 18.8203C10.507 18.8203 13.5374 15.7689 13.5374 12.005C13.5374 8.24114 10.5067 5.19 6.76859 5.19C3.03045 5.19 0 8.24022 0 12.005C0 15.7698 3.03022 18.8203 6.76859 18.8203Z\" fill=\"currentColor\"/><path d=\"M17.5785 18.4203C19.4475 18.4203 20.9629 15.5482 20.9629 12.005C20.9629 8.46271 19.4475 5.5897 17.5785 5.5897C15.7094 5.5897 14.1941 8.46271 14.1941 12.005C14.1941 15.5473 15.7094 18.4203 17.5785 18.4203Z\" fill=\"currentColor\"/><path d=\"M22.8097 17.7529C23.467 17.7529 24 15.1796 24 12.005C24 8.83068 23.4675 6.25715 22.8099 6.25715C22.1523 6.25715 21.6193 8.83137 21.6193 12.005C21.6193 15.1787 22.1523 17.7529 22.8097 17.7529Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMedium;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA+sB,EAA/sB,IAAqB,EAAO,UAAU,UAAS,gBAAC,OAAD,CAAM,EAAE,sLAAsL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+MAA+M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kMAAkM,KAAK,eAAc,CAAI,GAGzsB", "debugId": "18DAE1C939A47CE664756E2164756E21", "names": [] }