@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.37 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconColors/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconColors: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"colors, rgb, adjustments\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9996 2C9.05028 2 6.65784 4.39493 6.65784 7.35116C6.65784 8.12673 6.82218 8.86229 7.11732 9.52606C7.81846 11.1029 9.25792 12.2762 10.9929 12.6075C11.1528 12.3056 11.3356 12.0178 11.539 11.7466C12.7226 10.1688 14.6088 9.14617 16.7336 9.14617C16.8333 9.14617 16.9325 9.14842 17.0312 9.15289C17.2319 8.59048 17.3413 7.98414 17.3413 7.35116C17.3413 4.39493 14.9489 2 11.9996 2ZM12.7193 19.1794C13.6991 20.2965 15.1344 21 16.7336 21C19.6829 21 22.0753 18.6051 22.0753 15.6488C22.0753 12.8993 20.0052 10.6345 17.3429 10.3321C17.1432 10.3094 16.9399 10.2977 16.7336 10.2977C15.1344 10.2977 13.6991 11.0012 12.7193 12.1183C12.9014 12.3999 13.0624 12.6966 13.2 13.0061C13.5594 13.8143 13.7588 14.709 13.7588 15.6488C13.7588 16.9496 13.3769 18.1625 12.7193 19.1794ZM12.2972 13.8471C12.4979 14.4095 12.6073 15.0159 12.6073 15.6488C12.6073 16.8546 12.2099 17.9657 11.539 18.8601C10.5633 20.1608 9.01222 21 7.26558 21C4.31627 21 1.92383 18.6051 1.92383 15.6488C1.92383 13.0377 3.79085 10.8637 6.25894 10.3925C7.23864 12.2434 9.08541 13.565 11.2602 13.8121C11.5031 13.8397 11.7498 13.8538 11.9996 13.8538C12.0993 13.8538 12.1985 13.8516 12.2972 13.8471Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconColors;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ynCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconColors","props","React","CentralIconBase","IconColors_default"]}