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.76 kB
{"version":3,"sources":["../src/IconThumbDownCurved/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconThumbDownCurved: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"thumb-down-curved\">\n <path\n d=\"M21.25 14.25H16.25V3.75H21.25V14.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M11.587 21.1915L12.0582 21.25C13.5 16.5 16.25 15.5366 16.25 12.7163V6.05504C16.25 5.25261 15.7858 4.51099 15.0271 4.23642C12.4523 3.30469 9.75909 3.10538 7.03639 3.33986C5.37371 3.48306 4.07077 4.75909 3.70442 6.37718L2.82727 10.2514C2.38907 12.1869 3.87013 14.0267 5.86638 14.0267H10.4815L9.49609 17.2092C8.92665 19.0484 9.6657 20.9528 11.587 21.1915Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconThumbDownCurved;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,EAAE,uCACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,mWACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconThumbDownCurved","props","React","CentralIconBase","IconThumbDownCurved_default"]}