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 2.99 kB
{"version":3,"sources":["../src/IconTape/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTape: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"tape\">\n <path\n d=\"M1.75 4.75V4H1V4.75H1.75ZM22.25 4.75H23V4H22.25V4.75ZM22.25 19.25V20H23V19.25H22.25ZM1.75 19.25H1V20H1.75V19.25ZM1.75 5.5H22.25V4H1.75V5.5ZM21.5 4.75V19.25H23V4.75H21.5ZM22.25 18.5H1.75V20H22.25V18.5ZM2.5 19.25V4.75H1V19.25H2.5ZM10 12C10 12.8284 9.32843 13.5 8.5 13.5V15C10.1569 15 11.5 13.6569 11.5 12H10ZM8.5 13.5C7.67157 13.5 7 12.8284 7 12H5.5C5.5 13.6569 6.84315 15 8.5 15V13.5ZM7 12C7 11.1716 7.67157 10.5 8.5 10.5V9C6.84315 9 5.5 10.3431 5.5 12H7ZM8.5 10.5C9.32843 10.5 10 11.1716 10 12H11.5C11.5 10.3431 10.1569 9 8.5 9V10.5ZM8.5 15H15.5V13.5H8.5V15ZM17 12C17 12.8284 16.3284 13.5 15.5 13.5V15C17.1569 15 18.5 13.6569 18.5 12H17ZM15.5 13.5C14.6716 13.5 14 12.8284 14 12H12.5C12.5 13.6569 13.8431 15 15.5 15V13.5ZM14 12C14 11.1716 14.6716 10.5 15.5 10.5V9C13.8431 9 12.5 10.3431 12.5 12H14ZM15.5 10.5C16.3284 10.5 17 11.1716 17 12H18.5C18.5 10.3431 17.1569 9 15.5 9V10.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTape;\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,QACpCC,EAAA,cAAC,QACC,EAAE,i3BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTape","props","React","CentralIconBase","IconTape_default"]}