@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.61 kB
Source Map (JSON)
{"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 d=\"M11.1642 19.4135C11.2959 19.0208 11.0843 18.5956 10.6916 18.4639C10.2989 18.3322 9.87375 18.5438 9.74205 18.9365L11.1642 19.4135ZM9.42188 22.25L8.7108 22.0115L8.3793 23H9.42188V22.25ZM14.5781 22.25V23H15.6207L15.2892 22.0115L14.5781 22.25ZM14.258 18.9365C14.1262 18.5438 13.7011 18.3322 13.3084 18.4639C12.9157 18.5956 12.7041 19.0208 12.8358 19.4135L14.258 18.9365ZM19.5 9.46679C19.5 12.3027 18.3092 14.5443 16.757 16.0836C15.1819 17.6458 13.2992 18.425 12 18.425V19.925C13.7945 19.925 16.0369 18.9104 17.8133 17.1487C19.6127 15.3641 21 12.7516 21 9.46679H19.5ZM12 18.425C10.7008 18.425 8.81813 17.6458 7.24297 16.0836C5.6908 14.5443 4.5 12.3027 4.5 9.46679H3C3 12.7516 4.38732 15.3641 6.18671 17.1487C7.96312 18.9104 10.2055 19.925 12 19.925V18.425ZM4.5 9.46679C4.5 7.26674 5.33797 5.54438 6.66478 4.36441C8.00118 3.17592 9.87807 2.5 12 2.5V1C9.56558 1 7.31747 1.77658 5.66796 3.24354C4.00886 4.71902 3 6.85505 3 9.46679H4.5ZM12 2.5C14.1219 2.5 15.9988 3.17592 17.3352 4.36441C18.662 5.54438 19.5 7.26674 19.5 9.46679H21C21 6.85505 19.9911 4.71902 18.332 3.24354C16.6825 1.77658 14.4344 1 12 1V2.5ZM9.74205 18.9365L8.7108 22.0115L10.133 22.4885L11.1642 19.4135L9.74205 18.9365ZM9.42188 23H14.5781V21.5H9.42188V23ZM15.2892 22.0115L14.258 18.9365L12.8358 19.4135L13.867 22.4885L15.2892 22.0115ZM8.5 9.72531C8.5 8.69176 8.89025 7.90476 9.49321 7.36854C10.1057 6.8238 10.9826 6.5 12 6.5V5C10.6702 5 9.42204 5.42446 8.49639 6.24767C7.56114 7.07941 7 8.28007 7 9.72531H8.5Z\"\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,EAAE,g8CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBalloon","props","React","CentralIconBase","IconBalloon_default"]}