@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.11 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconBackpack/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBackpack: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"backpack,travel\">\n <path\n d=\"M3.75 4.75V4H3V4.75H3.75ZM20.25 4.75H21V4H20.25V4.75ZM9.25 1.75V1H8.5V1.75H9.25ZM14.75 1.75H15.5V1H14.75V1.75ZM9.5 11.25V10.5H8V11.25H9.5ZM8 13.25V14H9.5V13.25H8ZM16 11.25V10.5H14.5V11.25H16ZM14.5 13.25V14H16V13.25H14.5ZM9.75 16.5H9V18H9.75V16.5ZM14.25 18H15V16.5H14.25V18ZM3.75 5.5H20.25V4H3.75V5.5ZM19.5 4.75V8.25H21V4.75H19.5ZM17.25 10.5H6.75V12H17.25V10.5ZM4.5 8.25V4.75H3V8.25H4.5ZM6.75 10.5C5.50736 10.5 4.5 9.49264 4.5 8.25H3C3 10.3211 4.67893 12 6.75 12V10.5ZM19.5 8.25C19.5 9.49264 18.4926 10.5 17.25 10.5V12C19.3211 12 21 10.3211 21 8.25H19.5ZM4 10.5V18.25H5.5V10.5H4ZM7.75 22H16.25V20.5H7.75V22ZM20 18.25V10.5H18.5V18.25H20ZM16.25 22C18.3211 22 20 20.3211 20 18.25H18.5C18.5 19.4926 17.4926 20.5 16.25 20.5V22ZM4 18.25C4 20.3211 5.67893 22 7.75 22V20.5C6.50736 20.5 5.5 19.4926 5.5 18.25H4ZM10 4.75V1.75H8.5V4.75H10ZM9.25 2.5H14.75V1H9.25V2.5ZM14 1.75V4.75H15.5V1.75H14ZM8 11.25V13.25H9.5V11.25H8ZM14.5 11.25V13.25H16V11.25H14.5ZM9.75 18H14.25V16.5H9.75V18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBackpack;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpCC,EAAA,cAAC,QACC,EAAE,28BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBackpack","props","React","CentralIconBase","IconBackpack_default"]}