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.57 kB
{"version":3,"sources":["../src/IconRear/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRear: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rear, front-back, change-cam, lens\">\n <path\n d=\"M20.0118 3.75V3H18.5118V3.75H20.0118ZM19.2618 7.75V8.5H20.0118V7.75H19.2618ZM15.2618 7H14.5118V8.5H15.2618V7ZM4 20.25V21H5.5V20.25H4ZM4.75 16.25V15.5H4V16.25H4.75ZM8.75 17H9.5V15.5H8.75V17ZM3 12V12.75H4.5V12H3ZM21 12V11.25H19.5V12H21ZM18.1908 7.66345L18.6273 8.27336L19.8471 7.40039L19.4106 6.79049L18.1908 7.66345ZM5.84069 16.3802L5.39972 15.7735L4.18638 16.6554L4.62735 17.2621L5.84069 16.3802ZM11.25 12C11.25 12.4142 11.5858 12.75 12 12.75C12.4142 12.75 12.75 12.4142 12.75 12H11.25ZM12.75 11.99C12.75 11.5758 12.4142 11.24 12 11.24C11.5858 11.24 11.25 11.5758 11.25 11.99H12.75ZM18.5118 3.75V7.75H20.0118V3.75H18.5118ZM19.2618 7H15.2618V8.5H19.2618V7ZM5.5 20.25V16.25H4V20.25H5.5ZM4.75 17H8.75V15.5H4.75V17ZM12 3C7.02944 3 3 7.02944 3 12H4.5C4.5 7.85786 7.85786 4.5 12 4.5V3ZM12 21C16.9706 21 21 16.9706 21 12H19.5C19.5 16.1421 16.1421 19.5 12 19.5V21ZM19.4106 6.79049C17.7672 4.49422 15.0254 3 12 3V4.5C14.5301 4.5 16.8224 5.75139 18.1908 7.66345L19.4106 6.79049ZM4.62735 17.2621C6.27468 19.5285 8.99765 21 12 21V19.5C9.4893 19.5 7.21267 18.2677 5.84069 16.3802L4.62735 17.2621ZM11.5 12C11.5 11.7239 11.7239 11.5 12 11.5V13C12.5523 13 13 12.5523 13 12H11.5ZM12 11.5C12.2761 11.5 12.5 11.7239 12.5 12H11C11 12.5523 11.4477 13 12 13V11.5ZM12.5 12C12.5 12.2761 12.2761 12.5 12 12.5V11C11.4477 11 11 11.4477 11 12H12.5ZM12 12.5C11.7239 12.5 11.5 12.2761 11.5 12H13C13 11.4477 12.5523 11 12 11V12.5ZM12.75 12V11.99H11.25V12H12.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRear;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sCACpCC,EAAA,cAAC,QACC,EAAE,y5CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRear","props","React","CentralIconBase","IconRear_default"]}