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.56 kB
{"version":3,"sources":["../src/IconShoppingBagBlock2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagBlock2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shopping-bag-block-2\">\n <path\n d=\"M6.25 7.75V7H5.60293L5.5081 7.64009L6.25 7.75ZM17.75 7.75L18.4919 7.64009L18.3971 7H17.75V7.75ZM4.25 21.25L3.5081 21.1401L3.3807 22H4.25V21.25ZM9.25 22H10V20.5H9.25V22ZM17.3414 10.1099L17.4513 10.8518L18.9351 10.632L18.8252 9.89009L17.3414 10.1099ZM14.5 7.75V8.5H16V7.75H14.5ZM8 7.75V8.5H9.5V7.75H8ZM6.25 8.5H17.75V7H6.25V8.5ZM4.9919 21.3599L6.9919 7.85991L5.5081 7.64009L3.5081 21.1401L4.9919 21.3599ZM9.25 20.5H4.25V22H9.25V20.5ZM17.0081 7.85991L17.3414 10.1099L18.8252 9.89009L18.4919 7.64009L17.0081 7.85991ZM14.5 6V7.75H16V6H14.5ZM9.5 7.75V6H8V7.75H9.5ZM12 3.5C13.3807 3.5 14.5 4.61929 14.5 6H16C16 3.79086 14.2091 2 12 2V3.5ZM12 2C9.79086 2 8 3.79086 8 6H9.5C9.5 4.61929 10.6193 3.5 12 3.5V2ZM19.4017 15.0983C20.8661 16.5628 20.8661 18.9372 19.4017 20.4016L20.4623 21.4623C22.5126 19.4121 22.5126 16.0879 20.4623 14.0377L19.4017 15.0983ZM19.4017 20.4016C17.9372 21.8661 15.5628 21.8661 14.0983 20.4016L13.0377 21.4623C15.0879 23.5126 18.4121 23.5126 20.4623 21.4623L19.4017 20.4016ZM14.0983 20.4016C12.6339 18.9372 12.6339 16.5628 14.0983 15.0983L13.0377 14.0377C10.9874 16.0879 10.9874 19.4121 13.0377 21.4623L14.0983 20.4016ZM14.0983 15.0983C15.5628 13.6339 17.9372 13.6339 19.4017 15.0983L20.4623 14.0377C18.4121 11.9874 15.0879 11.9874 13.0377 14.0377L14.0983 15.0983ZM20.4623 20.4016L14.0983 14.0377L13.0377 15.0983L19.4017 21.4623L20.4623 20.4016Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShoppingBagBlock2;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,k1CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconShoppingBagBlock2","props","React","CentralIconBase","IconShoppingBagBlock2_default"]}