@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.39 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTape2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTape2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"tape-2, cassette, record, music\">\n <path\n d=\"M12.9062 9C12.6503 9.44158 12.501 9.95294 12.501 10.5C12.501 11.047 12.6503 11.5584 12.9062 12H11.0938C11.3495 11.5587 11.4988 11.0477 11.499 10.501C11.499 9.95382 11.3497 9.44166 11.0938 9H12.9062Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.50098 9.00195C9.32815 9.00248 9.99902 9.67368 9.99902 10.501C9.9985 11.3278 9.32782 11.9985 8.50098 11.999C7.67368 11.999 7.00248 11.3281 7.00195 10.501C7.00195 9.67336 7.67336 9.00195 8.50098 9.00195Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.5 9.00098C16.3276 9.00111 16.999 9.67233 16.999 10.5C16.9989 11.3276 16.3276 11.9989 15.5 11.999C14.6724 11.9989 14.0011 11.3276 14.001 10.5C14.001 9.67233 14.6724 9.00111 15.5 9.00098Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M22 4V20H2V4H22ZM6.13184 18.5H17.8682L16.6182 16H7.38184L6.13184 18.5ZM8.5 7.5C6.84315 7.5 5.5 8.84315 5.5 10.5C5.5 12.1569 6.84315 13.5 8.5 13.5H15.501C17.1576 13.4997 18.501 12.1567 18.501 10.5C18.501 8.84335 17.1575 7.50033 15.501 7.5H8.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTape2;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mCACpCC,EAAA,cAAC,QACC,EAAE,yMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qPACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTape2","props","React","CentralIconBase","IconTape2_default"]}