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.

1 lines 3.76 kB
{"version":3,"sources":["../src/Icon4k/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const Icon4k: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"4k\">\n <path\n d=\"M18 5H6C4.34315 5 3 6.34315 3 8V16C3 17.6569 4.34315 19 6 19H18C19.6569 19 21 17.6569 21 16V8C21 6.34315 19.6569 5 18 5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.7832 15.6221C9.2168 15.6221 8.80664 15.3047 8.80664 14.6406V14.3818H6.60449C5.85742 14.3818 5.33984 13.9082 5.33984 13.2246C5.33984 12.8486 5.4668 12.4531 5.74023 11.9648C6.19922 11.1396 6.63379 10.4219 7.17578 9.57227C7.76172 8.64941 8.24023 8.33203 9.0459 8.33203C10.0762 8.33203 10.7598 8.90332 10.7598 9.76758V12.7949H10.9209C11.4629 12.7949 11.7217 13.1318 11.7217 13.5908C11.7217 14.0498 11.458 14.3818 10.916 14.3818H10.7598V14.6406C10.7598 15.3047 10.3447 15.6221 9.7832 15.6221ZM8.86523 12.8779V9.83594H8.82617C8.11816 10.8711 7.60547 11.6914 7.03418 12.8193V12.8779H8.86523Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.4453 15.6221C12.7861 15.6221 12.4102 15.2314 12.4102 14.5381V9.41602C12.4102 8.72266 12.7861 8.33203 13.4453 8.33203C14.1045 8.33203 14.4805 8.72266 14.4805 9.41602V11.2471H14.5195L16.6826 8.80078C16.9805 8.46875 17.249 8.33203 17.6006 8.33203C18.1426 8.33203 18.582 8.75684 18.582 9.28906C18.582 9.60156 18.4746 9.82617 18.1816 10.1387L16.7266 11.6914L18.25 13.5762C18.6064 14.0156 18.7578 14.3281 18.7578 14.6211C18.7578 15.1875 18.3281 15.6221 17.7617 15.6221C17.3174 15.6221 17.0146 15.4561 16.6777 15.0264L15.0957 13.0195L14.4805 13.6543V14.5381C14.4805 15.2314 14.1045 15.6221 13.4453 15.6221Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon4k;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,MACpCC,EAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,8kBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8lBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","Icon4k","props","React","CentralIconBase","Icon4k_default"]}