@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.15 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconCamera2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCamera2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"camera-2, picture, image, cam\">\n <path\n d=\"M15.4649 6L14.5993 6.50073C14.778 6.80972 15.1079 7 15.4649 7V6ZM8.53513 6V7C8.89209 7 9.22199 6.80972 9.40073 6.50073L8.53513 6ZM2 9V17H4V9H2ZM6 21H18V19H6V21ZM22 17V9H20V17H22ZM12 5C13.1092 5 14.079 5.60141 14.5993 6.50073L16.3305 5.49927C15.4675 4.00738 13.852 3 12 3V5ZM9.40073 6.50073C9.92096 5.60141 10.8908 5 12 5V3C10.148 3 8.53254 4.00738 7.66952 5.49927L9.40073 6.50073ZM18 5H15.4649V7H18V5ZM8.53513 5H6V7H8.53513V5ZM22 9C22 6.79086 20.2091 5 18 5V7C19.1046 7 20 7.89543 20 9H22ZM18 21C20.2091 21 22 19.2091 22 17H20C20 18.1046 19.1046 19 18 19V21ZM2 17C2 19.2091 3.79086 21 6 21V19C4.89543 19 4 18.1046 4 17H2ZM4 9C4 7.89543 4.89543 7 6 7V5C3.79086 5 2 6.79086 2 9H4ZM14 12.5C14 13.6046 13.1046 14.5 12 14.5V16.5C14.2091 16.5 16 14.7091 16 12.5H14ZM12 14.5C10.8954 14.5 10 13.6046 10 12.5H8C8 14.7091 9.79086 16.5 12 16.5V14.5ZM10 12.5C10 11.3954 10.8954 10.5 12 10.5V8.5C9.79086 8.5 8 10.2909 8 12.5H10ZM12 10.5C13.1046 10.5 14 11.3954 14 12.5H16C16 10.2909 14.2091 8.5 12 8.5V10.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCamera2;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iCACpCC,EAAA,cAAC,QACC,EAAE,q+BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCamera2","props","React","CentralIconBase","IconCamera2_default"]}