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 3.81 kB
{"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconParasol: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"parasol,umbrella,vacation\">\n <path\n d=\"M10.2199 13.4822C9.77128 13.85 9.32137 14.2577 8.94076 14.6681C7.80406 12.4996 7.00513 9.93456 6.65225 7.74931C6.45824 6.54787 6.40323 5.48616 6.48987 4.68276C6.53322 4.28076 6.61001 3.96349 6.70954 3.73202C6.80817 3.50263 6.91381 3.39172 6.99765 3.34178L7.00572 3.33712C7.09089 3.28948 7.23976 3.25345 7.48773 3.28273C7.73796 3.31228 8.05111 3.40441 8.42093 3.56786C9.16001 3.89453 10.052 4.47303 10.9954 5.24176C12.7115 6.63999 14.5334 8.61438 15.8431 10.6831C15.2973 10.8075 14.7193 10.9933 14.1765 11.1979C13.3713 11.5013 12.608 11.8596 12.0926 12.1571C11.5772 12.4547 10.8852 12.9366 10.2199 13.4822Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.64668 2.57746C8.70592 2.60153 8.76544 2.62681 8.82519 2.65322C9.67512 3.02888 10.6445 3.66587 11.6271 4.46652C13.3385 5.86092 15.1494 7.80048 16.5066 9.86694C17.232 9.10008 18.367 8.58726 19.8558 8.49792L21.471 8.401L20.6619 6.99972C18.2087 2.75069 13.1082 0.983073 8.64668 2.57746Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.0332 12.7865C12.8694 12.8692 12.7211 12.949 12.5926 13.0232C12.4641 13.0974 12.3208 13.186 12.1672 13.2865L16.5687 20.91L17.4347 20.4099L13.0332 12.7865Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.90221 14.8347C6.87535 15.0795 5.86373 15.8061 5.04195 17.0507L4.15043 18.401L3.34142 16.9997C0.888233 12.7507 1.90772 7.44964 5.51928 4.38306C5.5105 4.4464 5.50264 4.51059 5.49563 4.57554C5.396 5.49943 5.46298 6.6574 5.66504 7.90872C6.01695 10.088 6.7912 12.6261 7.90221 14.8347Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\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,6BACpCC,EAAA,cAAC,QACC,EAAE,gmBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gSACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6RACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconParasol","props","React","CentralIconBase","IconParasol_default"]}