UNPKG

@central-icons-react/square-outlined-radius-0-stroke-2

Version:

A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.

1 lines 3.76 kB
{"version":3,"sources":["../src/IconApples/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconApples: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"apples, fruit\">\n <path\n d=\"M9.49863 1.61539L8.61402 1.14906L7.68137 2.91828L8.56598 3.38461L9.49863 1.61539ZM11.9991 7.00506L11.6104 7.92644L11.9991 8.09039L12.3877 7.92647L11.9991 7.00506ZM11.9989 20.5202L12.391 19.6003L11.9989 19.4332L11.6068 19.6003L11.9989 20.5202ZM11.6068 19.6003C10.6024 20.0285 9.75449 20.0783 9.04526 19.9107C8.32963 19.7416 7.67545 19.3321 7.09978 18.713C5.92876 17.4537 5.16786 15.4098 5.02443 13.3188C4.87978 11.2101 5.37718 9.32058 6.39395 8.26033C6.88396 7.74936 7.51405 7.40559 8.32904 7.30539C9.15975 7.20326 10.2401 7.34836 11.6104 7.92644L12.3878 6.08369C10.7916 5.41035 9.35359 5.16437 8.08499 5.32034C6.80066 5.47824 5.75053 6.04173 4.95045 6.87602C3.38703 8.50629 2.86474 11.0593 3.02912 13.4556C3.19471 15.8697 4.07153 18.3934 5.63516 20.0749C6.42681 20.9263 7.41418 21.5804 8.58537 21.8571C9.76294 22.1354 11.0471 22.0131 12.3911 21.4401L11.6068 19.6003ZM12.3877 7.92647C13.7584 7.34838 14.8391 7.20326 15.6701 7.3054C16.4853 7.40561 17.1156 7.74943 17.6058 8.26042C18.6228 9.32067 19.1203 11.2101 18.9756 13.3188C18.8321 15.4097 18.071 17.4536 16.8997 18.7129C16.3239 19.332 15.6695 19.7416 14.9535 19.9107C14.244 20.0783 13.3957 20.0285 12.391 19.6003L11.6069 21.4402C12.9511 22.0131 14.2355 22.1354 15.4133 21.8571C16.5847 21.5804 17.5723 20.9264 18.3641 20.075C19.9282 18.3935 20.8052 15.8698 20.9709 13.4557C21.1353 11.0593 20.6129 8.50622 19.0491 6.87595C18.2489 6.04167 17.1986 5.47823 15.9141 5.32034C14.6453 5.16439 13.207 5.41034 11.6105 6.08366L12.3877 7.92647ZM8.56598 3.38461C9.85901 4.06624 10.5309 4.95854 10.849 6.24079L12.7902 5.75921C12.3325 3.9146 11.2877 2.55851 9.49863 1.61539L8.56598 3.38461Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconApples;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,EAAE,8lDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconApples","props","React","CentralIconBase","IconApples_default"]}