@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 2.95 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=\"M7 2H8V4H16V2H17V4H21V11H20V9H4V20H11V21H3V4H7V2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 22V18.5H17.5L18.9321 19.9321C18.373 20.2913 17.7062 20.5 17 20.5C15.3699 20.5 13.9988 19.3851 13.6103 17.8754L13.4856 17.3912L12.5172 17.6404L12.6418 18.1246C13.1414 20.0654 14.9025 21.5 17 21.5C17.9812 21.5 18.9022 21.1855 19.652 20.652L21 22Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 15.5V12L14.348 13.348C15.098 12.8144 16.019 12.5 17 12.5C19.0975 12.5 20.8587 13.9346 21.3582 15.8754L21.4829 16.3596L20.5144 16.6088L20.3898 16.1246C20.0012 14.6149 18.6302 13.5 17 13.5C16.2938 13.5 15.6268 13.7088 15.068 14.068L16.5 15.5H13Z\"\n fill=\"currentColor\"\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,oDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2PACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0PACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCalendarRepeat","props","React","CentralIconBase","IconCalendarRepeat_default"]}