UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 3.13 kB
{"version":3,"sources":["../src/IconRequestClosed/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRequestClosed: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"request-closed\">\n <path\n d=\"M15.5 2.93945L14.4393 4.00011L16.4393 6.00011L14.4393 8.00011L15.5 9.06077L17.5 7.06077L19.5 9.06077L20.5607 8.00011L18.5607 6.00011L20.5607 4.00011L19.5 2.93945L17.5 4.93945L15.5 2.93945Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.5 3.00011C4.84315 3.00011 3.5 4.34326 3.5 6.00011C3.5 7.39799 4.45608 8.57257 5.75 8.9056V15.0946C4.45608 15.4277 3.5 16.6022 3.5 18.0001C3.5 19.657 4.84315 21.0001 6.5 21.0001C8.15685 21.0001 9.5 19.657 9.5 18.0001C9.5 16.6022 8.54392 15.4277 7.25 15.0946V8.9056C8.54392 8.57257 9.5 7.39799 9.5 6.00011C9.5 4.34326 8.15685 3.00011 6.5 3.00011Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.25 10.0001H16.75V15.0946C15.4561 15.4277 14.5 16.6022 14.5 18.0001C14.5 19.657 15.8431 21.0001 17.5 21.0001C19.1569 21.0001 20.5 19.657 20.5 18.0001C20.5 16.6022 19.5439 15.4277 18.25 15.0946V10.0001Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRequestClosed;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kBACpCC,EAAA,cAAC,QACC,EAAE,+LACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8VACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRequestClosed","props","React","CentralIconBase","IconRequestClosed_default"]}