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 kB
{"version":3,"sources":["../src/IconWrite1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWrite1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"write-1, fountain-pen\">\n <path\n d=\"M11.9815 5.27438L18.7258 12.0187L22.2444 8.50018L15.5 1.75586L11.9815 5.27438Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.2253 12.9324L11.0678 5.77489L5.90917 7.43477L3.29102 20.0019L8.39675 14.8962C8.13463 14.5008 7.98196 14.0265 7.98196 13.5166C7.98196 12.1359 9.10125 11.0166 10.482 11.0166C11.8627 11.0166 12.982 12.1359 12.982 13.5166C12.982 14.8973 11.8627 16.0166 10.482 16.0166C9.9728 16.0166 9.49919 15.8644 9.10415 15.603L3.99785 20.7093L16.5654 18.091L18.2253 12.9324Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.98196 13.5166C8.98196 12.6882 9.65354 12.0166 10.482 12.0166C11.3104 12.0166 11.982 12.6882 11.982 13.5166C11.982 14.345 11.3104 15.0166 10.482 15.0166C9.65354 15.0166 8.98196 14.345 8.98196 13.5166Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWrite1;\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,yBACpCC,EAAA,cAAC,QACC,EAAE,iFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconWrite1","props","React","CentralIconBase","IconWrite1_default"]}