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 3.85 kB
{"version":3,"sources":["../src/IconPets/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPets: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pets, paw, animal\">\n <path\n d=\"M14.0833 20.2448C13.0417 19.2953 10.9583 19.2953 10.0531 20.2448C9.09442 21.0729 7.94773 21.7552 6.77732 20.7442C3.43786 17.8596 9.05701 10.75 12 10.75C14.943 10.75 20.5621 17.8596 17.2227 20.7442C16.0523 21.7552 15.042 21.0729 14.0833 20.2448Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M10.7465 5.57309C10.8068 7.09133 10.0737 8.28938 9.10914 8.24901C8.14455 8.20864 7.31374 6.94514 7.25347 5.42691C7.19319 3.90867 7.92628 2.71062 8.89086 2.75099C9.85545 2.79136 10.6863 4.05486 10.7465 5.57309Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M13.2535 5.57309C13.1932 7.09133 13.9263 8.28938 14.8909 8.24901C15.8554 8.20864 16.6863 6.94514 16.7465 5.42691C16.8068 3.90867 16.0737 2.71062 15.1091 2.75099C14.1446 2.79136 13.3137 4.05486 13.2535 5.57309Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M6.1747 8.99423C6.45428 10.3676 5.93113 11.5954 5.00622 11.7367C4.08131 11.8779 3.10488 10.8791 2.8253 9.50577C2.54572 8.13242 3.06887 6.90458 3.99378 6.76332C4.91869 6.62205 5.89512 7.62087 6.1747 8.99423Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M21.1747 9.50577C20.8951 10.8791 19.9187 11.8779 18.9938 11.7367C18.0689 11.5954 17.5457 10.3676 17.8253 8.99423C18.1049 7.62087 19.0813 6.62205 20.0062 6.76332C20.9311 6.90458 21.4543 8.13242 21.1747 9.50577Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPets;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,EAAE,uPACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPets","props","React","CentralIconBase","IconPets_default"]}