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.9 kB
{"version":3,"sources":["../src/IconBalloon/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBalloon: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"balloon, birthday\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M5.65178 3.31207C7.29388 1.80721 9.54454 1 12 1C14.4555 1 16.7061 1.80721 18.3482 3.31207C19.9956 4.82176 21 7.00648 21 9.69286C21 13.0866 19.6105 15.7855 17.8027 17.633C16.6691 18.7915 15.3538 19.6315 14.0936 20.0924L15.4384 23H8.76148L9.9222 20.0982C8.65727 19.6385 7.33563 18.7963 6.19731 17.633C4.3895 15.7855 3 13.0866 3 9.69286C3 7.00648 4.0044 4.82176 5.65178 3.31207ZM10.8877 20.3769L10.2385 22H13.8741L13.1224 20.3748C12.7337 20.4576 12.357 20.5 12 20.5C11.6461 20.5 11.2729 20.4583 10.8877 20.3769ZM8.4566 6.33468C7.56789 7.18514 7 8.43473 7 10.0357H6C6 8.18492 6.66333 6.66665 7.76522 5.6122C8.86348 4.56122 10.3668 4 12 4V5C10.5956 5 9.34896 5.48075 8.4566 6.33468Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBalloon;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,wqBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBalloon","props","React","CentralIconBase","IconBalloon_default"]}