UNPKG

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

Version:

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

1 lines 2.92 kB
{"version":3,"sources":["../src/IconTea/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTea: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"tea, cafe, coffee, vibe\">\n <path\n d=\"M9.79688 2.21387L9.61621 2.68066L9.53027 2.91504C9.15612 4.00541 9.15612 4.99459 9.53027 6.08496L9.61621 6.31934L9.79688 6.78613L8.86426 7.14648L8.68359 6.68066L8.58203 6.40137C8.10771 5.01308 8.14154 3.72148 8.68359 2.31934L8.86426 1.85352L9.79688 2.21387ZM13.7969 2.21387L13.6162 2.68066L13.5303 2.91504C13.1561 4.00541 13.1561 4.99459 13.5303 6.08496L13.6162 6.31934L13.7969 6.78613L12.8643 7.14648L12.6836 6.68066L12.582 6.40137C12.1077 5.01308 12.1415 3.72148 12.6836 2.31934L12.8643 1.85352L13.7969 2.21387ZM19 13.8633C19 14.2489 18.972 14.6285 18.9209 15H19.6875C20.9348 15 22 13.9116 22 12.5C22 11.0884 20.9348 10 19.6875 10H19V13.8633ZM23 12.5C23 14.4021 21.5469 16 19.6875 16H18.7197C17.7978 19.4526 14.6973 22 11 22C6.57327 22 3 18.3483 3 13.8633V9H19.6875C21.5469 9 23 10.5979 23 12.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTea;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,gyBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTea","props","React","CentralIconBase","IconTea_default"]}