@central-icons-react/square-filled-radius-0-stroke-1.5
Version:
A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.1 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 2H8.5V4H15.5V2H17V4H21V10H4.5V19.5H11V21H3V4H7V2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.6351 14.7392C15.2356 14.1293 16.0822 13.75 17 13.75C18.7949 13.75 20.25 15.2051 20.25 17H21.75C21.75 14.3766 19.6234 12.25 17 12.25C15.6668 12.25 14.439 12.8004 13.5662 13.6868L14.6351 14.7392Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17 20.25C15.2051 20.25 13.75 18.7949 13.75 17H12.25C12.25 19.6234 14.3766 21.75 17 21.75C18.2018 21.75 19.3179 21.3027 20.1649 20.5659L19.1805 19.4341C18.5965 19.9421 17.8271 20.25 17 20.25Z\"\n fill=\"currentColor\"\n />\n <path d=\"M21.25 18.25V22.25L17.25 18.25H21.25Z\" fill=\"currentColor\" />\n <path d=\"M12.75 15.75V11.75L16.75 15.75H12.75Z\" fill=\"currentColor\" />\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,uDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kMACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,wCAAwC,KAAK,eAAe,EACpEA,EAAA,cAAC,QAAK,EAAE,wCAAwC,KAAK,eAAe,CACtE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCalendarRepeat","props","React","CentralIconBase","IconCalendarRepeat_default"]}