UNPKG

@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 2.94 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=\"M10.041 2.30176L9.78418 3.00684L9.71777 3.2002C9.42708 4.09738 9.42708 4.90262 9.71777 5.7998L9.78418 5.99316L10.041 6.69824L8.63184 7.21191L8.375 6.50684L8.28711 6.25098C7.87649 4.97528 7.90582 3.78042 8.375 2.49316L8.63184 1.78809L10.041 2.30176ZM14.041 2.30176L13.7842 3.00684L13.7178 3.2002C13.4271 4.09738 13.4271 4.90262 13.7178 5.7998L13.7842 5.99316L14.041 6.69824L12.6318 7.21191L12.375 6.50684L12.2871 6.25098C11.8765 4.97528 11.9058 3.78042 12.375 2.49316L12.6318 1.78809L14.041 2.30176ZM19 13.9316C19 14.1227 18.9905 14.3122 18.9775 14.5H19.75C20.6508 14.5 21.5 13.6734 21.5 12.5C21.5 11.3266 20.6508 10.5 19.75 10.5H19V13.9316ZM23 12.5C23 14.3641 21.6106 16 19.75 16H18.7334C17.8283 19.4502 14.714 22 11 22C6.57512 22 3 18.3809 3 13.9316V9C8.58333 9 14.1667 9 19.75 9C21.6106 9 23 10.6359 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,6yBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTea","props","React","CentralIconBase","IconTea_default"]}