UNPKG

@central-icons-react/square-outlined-radius-0-stroke-1.5

Version:

A collection of square outlined React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 5.85 kB
{"version":3,"sources":["../src/IconDateMonthly/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDateMonthly: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"date-monthly\">\n <path\n d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.75 18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5C11.25 18.0858 11.5858 17.75 12 17.75C12.4142 17.75 12.75 18.0858 12.75 18.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.75 5.5C13.75 6.4665 12.9665 7.25 12 7.25C11.0335 7.25 10.25 6.4665 10.25 5.5C10.25 4.5335 11.0335 3.75 12 3.75C12.9665 3.75 13.75 4.5335 13.75 5.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M12.75 18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5C11.25 18.0858 11.5858 17.75 12 17.75C12.4142 17.75 12.75 18.0858 12.75 18.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDateMonthly;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0JACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,qKACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,4JACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,iKACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,uKACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDateMonthly","props","React","CentralIconBase","IconDateMonthly_default"]}