UNPKG

@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.5 kB
{"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.9999 2C9.01872 2 6.59978 4.42459 6.59978 7.41816C6.59978 8.20318 6.76592 8.94814 7.06443 9.62048C7.78824 11.2508 9.29032 12.4551 11.0946 12.7606C11.2596 12.4344 11.4522 12.1249 11.6693 11.8349C12.8044 10.3195 14.613 9.3376 16.6505 9.3376C16.7836 9.3376 16.9157 9.34179 17.0468 9.35006C17.275 8.75044 17.4001 8.09938 17.4001 7.41816C17.4001 4.42459 14.9812 2 11.9999 2ZM12.516 19.0675C13.5073 20.2499 14.9917 21 16.6505 21C19.6317 21 22.0507 18.5754 22.0507 15.5818C22.0507 12.7975 19.9575 10.5047 17.2663 10.1985C17.0643 10.1755 16.8589 10.1637 16.6505 10.1637C14.9917 10.1637 13.5073 10.9137 12.516 12.0962C12.7167 12.3948 12.8923 12.7119 13.0399 13.0443C13.3844 13.8202 13.5756 14.6792 13.5756 15.5818C13.5756 16.872 13.185 18.0718 12.516 19.0675ZM11.9999 12.8261C11.9979 12.8295 11.9959 12.8329 11.9939 12.8363L11.9999 12.8363L12.006 12.8363C12.004 12.8329 12.002 12.8295 11.9999 12.8261ZM12.3963 13.6499C12.2652 13.6582 12.133 13.6624 11.9999 13.6624C11.7603 13.6624 11.5237 13.6488 11.2908 13.6223C9.16712 13.3807 7.36938 12.0687 6.44405 10.2394C3.89369 10.6712 1.94922 12.8982 1.94922 15.5818C1.94922 18.5754 4.36816 21 7.34938 21C9.11509 21 10.6832 20.1501 11.6693 18.8335C12.3476 17.9279 12.7495 16.8026 12.7495 15.5818C12.7495 14.9006 12.6244 14.2496 12.3963 13.6499Z\"\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,mwCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconColors","props","React","CentralIconBase","IconColors_default"]}