UNPKG

@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.51 kB
{"version":3,"sources":["../src/IconBrightness/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBrightness: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"brightness\">\n <path d=\"M12.75 1H11.25V3.525H12.75V1Z\" fill=\"currentColor\" />\n <path\n d=\"M4.75218 3.6915L3.69152 4.75216L5.47696 6.5376L6.53762 5.47694L4.75218 3.6915Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.3085 4.75218L19.2479 3.69152L17.4624 5.47696L18.5231 6.53762L20.3085 4.75218Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6Z\"\n fill=\"currentColor\"\n />\n <path d=\"M1 11.25V12.75H3.525V11.25H1Z\" fill=\"currentColor\" />\n <path d=\"M20.475 11.25V12.75H23V11.25H20.475Z\" fill=\"currentColor\" />\n <path\n d=\"M18.5231 17.4624L17.4624 18.5231L19.2479 20.3085L20.3085 19.2478L18.5231 17.4624Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.53765 18.5231L5.47699 17.4624L3.69154 19.2479L4.7522 20.3085L6.53765 18.5231Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.75 20.475H11.25V23H12.75V20.475Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBrightness;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,cACpCC,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QACC,EAAE,iFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mHACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QAAK,EAAE,uCAAuC,KAAK,eAAe,EACnEA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,uCAAuC,KAAK,eAAe,CACrE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBrightness","props","React","CentralIconBase","IconBrightness_default"]}