@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/IconCalendarRepeat/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCalendarRepeat: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"calendar-repeat, date-repeat\">\n <path\n d=\"M13 15V12.7071C13 12.2616 13.5386 12.0385 13.8536 12.3535L16.6464 15.1464C16.9614 15.4614 16.7383 16 16.2929 16H14C13.4477 16 13 15.5522 13 15Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 19V21.2928C21 21.7383 20.4614 21.9614 20.1464 21.6464L17.3536 18.8535C17.0386 18.5385 17.2617 18 17.7071 18H20C20.5523 18 21 18.4477 21 19Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10 20H7C5.34315 20 4 18.6569 4 17V9M4 9V8C4 6.34315 5.34315 5 7 5H17C18.6569 5 20 6.34315 20 8C20 8.55228 20 9 20 9H4ZM8 5V3M16 5V3M19.4221 19.7188C18.7737 20.2828 17.9193 20.625 17 20.625C15.3448 20.625 13.9488 19.5157 13.5147 18M14.3725 14.4743C15.04 13.7963 15.98 13.375 17 13.375C18.6552 13.375 20.0512 14.4843 20.4853 16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCalendarRepeat;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gCACpCC,EAAA,cAAC,QACC,EAAE,kJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yUACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCalendarRepeat","props","React","CentralIconBase","IconCalendarRepeat_default"]}