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 3.16 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 d=\"M7.30327 9.98894C7.01907 9.34978 6.86111 8.64189 6.86111 7.89706C6.86111 5.05442 9.16187 2.75 12 2.75C14.8381 2.75 17.1389 5.05442 17.1389 7.89706C17.1389 8.64189 16.9809 9.34978 16.6967 9.98894M7.30327 9.98894C4.7409 10.2801 2.75 12.4586 2.75 15.1029C2.75 17.9456 5.05076 20.25 7.88889 20.25C9.56992 20.25 11.0624 19.4416 12 18.1917M7.30327 9.98894C8.02803 11.6189 9.57377 12.8019 11.4144 13.0111M16.6967 9.98894C16.5045 9.9671 16.3091 9.95588 16.1111 9.95588C14.4301 9.95588 12.9376 10.7643 12 12.0142M16.6967 9.98894C19.2591 10.2801 21.25 12.4586 21.25 15.1029C21.25 17.9456 18.9492 20.25 16.1111 20.25C14.4301 20.25 12.9376 19.4416 12 18.1917M12 12.0142C11.7694 12.3216 11.5724 12.6557 11.4144 13.0111M12 12.0142C12.2306 12.3216 12.4276 12.6557 12.5856 13.0111M11.4144 13.0111C11.6066 13.0329 11.802 13.0441 12 13.0441C12.198 13.0441 12.3934 13.0329 12.5856 13.0111M12.5856 13.0111C12.8698 13.6502 13.0278 14.3581 13.0278 15.1029C13.0278 16.2619 12.6454 17.3314 12 18.1917\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,EAAE,m9BACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconColors","props","React","CentralIconBase","IconColors_default"]}