@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 • 4.86 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTeddyBear/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTeddyBear: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"teddy-bear, play\">\n <path\n d=\"M10.5808 9.07263C10.3796 8.78558 10.5727 8.43767 10.9554 8.35982C11.6752 8.21339 12.3248 8.21339 13.0446 8.35982C13.4273 8.43767 13.6204 8.78558 13.4192 9.07263C13.125 9.49226 12.6374 10 12 10C11.3626 10 10.875 9.49226 10.5808 9.07263Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M5 5.27778C5 3.47952 6.42456 2 8.20833 2C8.77088 2 9.30004 2.14829 9.75954 2.40797C10.4517 2.14464 11.2085 2 12 2C12.7915 2 13.5483 2.14464 14.2405 2.40797C14.7 2.14829 15.2291 2 15.7917 2C17.5754 2 19 3.47952 19 5.27778C19 6.25591 18.5799 7.13687 17.9113 7.73847C17.8511 9.06082 17.2928 10.2516 16.4132 11.1645L19.1646 11.9248C20.3955 12.2649 21.25 13.3808 21.25 14.6558C21.25 15.3844 20.9682 16.0845 20.4638 16.6114L20.0867 17.0053C20.3502 17.4861 20.5 18.0381 20.5 18.625C20.5 20.489 18.989 22 17.125 22C15.791 22 14.6379 21.2261 14.0899 20.1028C12.6674 20.6324 11.3326 20.6324 9.91011 20.1028C9.36215 21.2261 8.20895 22 6.875 22C5.01104 22 3.5 20.489 3.5 18.625C3.5 18.0381 3.64983 17.4861 3.91333 17.0053L3.53617 16.6114C3.03177 16.0845 2.75 15.3844 2.75 14.6558C2.75 13.3808 3.60449 12.2649 4.83536 11.9248L7.58682 11.1645C6.70716 10.2516 6.14891 9.06082 6.08875 7.73847C5.4201 7.13687 5 6.25591 5 5.27778ZM8.20833 3C7.00056 3 6 4.00779 6 5.27778C6 6.02782 6.35061 6.68975 6.88848 7.10411L7.08332 7.25422L7.08333 7.50018C7.08344 9.94845 9.24623 12 12 12C14.7538 12 16.9166 9.94845 16.9167 7.50018L16.9167 7.25422L17.1115 7.10411C17.6494 6.68974 18 6.02781 18 5.27778C18 4.00779 16.9994 3 15.7917 3C15.3404 3 14.9213 3.13911 14.5712 3.3792L14.3438 3.5351L14.0906 3.42601C13.4575 3.15322 12.7493 3 12 3C11.2507 3 10.5425 3.15322 9.90943 3.426L9.65623 3.5351L9.42884 3.3792C9.07868 3.13911 8.65961 3 8.20833 3ZM8.01823 12.0828L5.10169 12.8887C4.30128 13.1098 3.75 13.8337 3.75 14.6558C3.75 15.126 3.93179 15.5786 4.25849 15.9198L4.52718 16.2005C5.13464 15.6121 5.96253 15.25 6.875 15.25C7.00425 15.25 7.1318 15.2573 7.25726 15.2714C7.30402 14.064 7.57473 13.0324 8.01823 12.0828ZM19.7415 15.9198L19.4728 16.2005C18.8654 15.6121 18.0375 15.25 17.125 15.25C16.9958 15.25 16.8682 15.2573 16.7427 15.2714C16.696 14.064 16.4253 13.0324 15.9818 12.0828L18.8983 12.8887C19.6987 13.1098 20.25 13.8337 20.25 14.6558C20.25 15.126 20.0682 15.5786 19.7415 15.9198ZM6.875 16.25C5.56332 16.25 4.5 17.3133 4.5 18.625C4.5 19.9367 5.56332 21 6.875 21C8.18668 21 9.25 19.9367 9.25 18.625C9.25 17.3133 8.18668 16.25 6.875 16.25ZM14.75 18.625C14.75 17.3133 15.8133 16.25 17.125 16.25C18.4367 16.25 19.5 17.3133 19.5 18.625C19.5 19.9367 18.4367 21 17.125 21C15.8133 21 14.75 19.9367 14.75 18.625Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTeddyBear;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,EAAE,8OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yuEACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTeddyBear","props","React","CentralIconBase","IconTeddyBear_default"]}