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.16 kB
{"version":3,"sources":["../src/IconClosedCaptioning/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconClosedCaptioning: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"closed-captioning, cc\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.4874 10.7626C9.80402 10.0791 8.69598 10.0791 8.01256 10.7626C7.32915 11.446 7.32915 12.554 8.01256 13.2374C8.69598 13.9209 9.80402 13.9209 10.4874 13.2374L11.5481 14.2981C10.2789 15.5673 8.22111 15.5673 6.9519 14.2981C5.6827 13.0289 5.6827 10.9711 6.9519 9.7019C8.22111 8.4327 10.2789 8.4327 11.5481 9.7019L10.4874 10.7626ZM16.7008 10.7626C16.0174 10.0791 14.9094 10.0791 14.2259 10.7626C13.5425 11.446 13.5425 12.554 14.2259 13.2374C14.9094 13.9209 16.0174 13.9209 16.7008 13.2374L17.7615 14.2981C16.4923 15.5673 14.4345 15.5673 13.1653 14.2981C11.8961 13.0289 11.8961 10.9711 13.1653 9.7019C14.4345 8.4327 16.4923 8.4327 17.7615 9.7019L16.7008 10.7626Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClosedCaptioning;\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,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qpBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconClosedCaptioning","props","React","CentralIconBase","IconClosedCaptioning_default"]}