@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.67 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconClosedCaptioning/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconClosedCaptioning: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"closed-captioning, cc\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.9571 11.2929C15.5666 10.9024 14.9334 10.9024 14.5429 11.2929C14.1524 11.6834 14.1524 12.3166 14.5429 12.7071C14.9334 13.0976 15.5666 13.0976 15.9571 12.7071C16.3476 12.3166 16.9808 12.3166 17.3713 12.7071C17.7618 13.0976 17.7618 13.7308 17.3713 14.1213C16.1997 15.2929 14.3003 15.2929 13.1287 14.1213C11.9571 12.9497 11.9571 11.0503 13.1287 9.87868C14.3003 8.70711 16.1997 8.70711 17.3713 9.87868C17.7618 10.2692 17.7618 10.9024 17.3713 11.2929C16.9808 11.6834 16.3476 11.6834 15.9571 11.2929ZM9.62552 11.0726C9.26263 10.9261 8.83433 11.0015 8.54289 11.2929C8.15237 11.6834 8.15237 12.3166 8.54289 12.7071C8.93342 13.0976 9.56658 13.0976 9.95711 12.7071C10.3476 12.3166 10.9808 12.3166 11.3713 12.7071C11.7618 13.0976 11.7618 13.7308 11.3713 14.1213C10.1997 15.2929 8.30025 15.2929 7.12868 14.1213C5.95711 12.9497 5.95711 11.0503 7.12868 9.87868C8.00741 8.99995 9.2939 8.78174 10.3745 9.21816C10.7385 9.36517 11.0787 9.58604 11.3713 9.87868C11.7618 10.2692 11.7618 10.9024 11.3713 11.2929C10.9808 11.6834 10.3476 11.6834 9.95711 11.2929C9.85782 11.1936 9.74498 11.1209 9.62552 11.0726Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4 7C4 5.34315 5.34315 4 7 4H17C18.6569 4 20 5.34315 20 7V17C20 18.6569 18.6569 20 17 20H7C5.34315 20 4 18.6569 4 17V7Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClosedCaptioning;\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,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,okCACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconClosedCaptioning","props","React","CentralIconBase","IconClosedCaptioning_default"]}