@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.29 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTextToImage/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextToImage: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"text-to-image\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1 3H11V5H10V4H6.5V13H8V14H4V13H5.5V4H2V5H1V3Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.5 2L18.6667 3.66667L17 4.5L18.6667 5.33333L19.5 7L20.3333 5.33333L22 4.5L20.3333 3.66667L19.5 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15 4L14.3333 5.33333L13 6L14.3333 6.66667L15 8L15.6667 6.66667L17 6L15.6667 5.33333L15 4Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 17L3.66667 18.6667L2 19.5L3.66667 20.3333L4.5 22L5.33333 20.3333L7 19.5L5.33333 18.6667L4.5 17Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 9V21H22V9H10ZM21 18L18 15L13 20H21V18ZM14.25 14.5C14.9404 14.5 15.5 13.9404 15.5 13.25C15.5 12.5596 14.9404 12 14.25 12C13.5596 12 13 12.5596 13 13.25C13 13.9404 13.5596 14.5 14.25 14.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTextToImage;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6FACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTextToImage","props","React","CentralIconBase","IconTextToImage_default"]}