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.07 kB
{"version":3,"sources":["../src/IconFootsteps/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFootsteps: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"footsteps\">\n <path\n d=\"M9.25 15.25H3.75V16.4375C3.75 17.9908 4.98122 19.25 6.5 19.25C8.01878 19.25 9.25 17.9908 9.25 16.4375V15.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M9.26546 12.75H3.73457C1.97336 9.75 2.39037 2.75 6.49986 2.75C10.6093 2.75 11.0268 9.75 9.26546 12.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M20.25 17.25H14.75V18.4375C14.75 19.9908 15.9812 21.25 17.5 21.25C19.0188 21.25 20.25 19.9908 20.25 18.4375V17.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M20.2655 14.75H14.7346C12.9734 11.75 13.3904 4.75 17.4999 4.75C21.6093 4.75 22.0268 11.75 20.2655 14.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFootsteps;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,aACpCC,EAAA,cAAC,QACC,EAAE,+GACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,yGACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,qHACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,2GACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFootsteps","props","React","CentralIconBase","IconFootsteps_default"]}