@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 • 3.64 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconMorningBrief/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMorningBrief: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"morning-brief, daily-todo\">\n <path\n d=\"M4.9502 19.75C5.36441 19.75 5.7002 20.0858 5.7002 20.5C5.7002 20.9142 5.36441 21.25 4.9502 21.25C4.53598 21.25 4.2002 20.9142 4.2002 20.5C4.2002 20.0858 4.53598 19.75 4.9502 19.75Z\"\n fill=\"currentColor\"\n />\n <path d=\"M16 21H7V20H16V21Z\" fill=\"currentColor\" />\n <path\n d=\"M4.9502 15.75C5.36441 15.75 5.7002 16.0858 5.7002 16.5C5.7002 16.9142 5.36441 17.25 4.9502 17.25C4.53598 17.25 4.2002 16.9142 4.2002 16.5C4.2002 16.0858 4.53598 15.75 4.9502 15.75Z\"\n fill=\"currentColor\"\n />\n <path d=\"M19 17H7V16H19V17Z\" fill=\"currentColor\" />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 7C14.869 7 17.2239 9.19679 17.4766 12H23V13H1V12H6.52344C6.77609 9.19679 9.13101 7 12 7Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.40332 6.69629L6.69629 7.40332L3.86816 4.5752L4.5752 3.86816L7.40332 6.69629Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.1318 4.5752L17.3027 7.40332L16.5957 6.69629L19.4248 3.86816L20.1318 4.5752Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.5 5H11.5V1H12.5V5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconMorningBrief;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,uLACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDA,EAAA,cAAC,QACC,EAAE,uLACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+FACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMorningBrief","props","React","CentralIconBase","IconMorningBrief_default"]}