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.08 kB
{"version":3,"sources":["../src/IconTextSelectDashed/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTextSelectDashed: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"text-select-dashed, lollipops\">\n <path\n d=\"M4.5 2.75C2.98122 2.75 1.75 3.98122 1.75 5.5C1.75 6.84803 2.71994 7.96953 4 8.20466V19H5V8.20466C6.28006 7.96953 7.25 6.84803 7.25 5.5C7.25 3.98122 6.01878 2.75 4.5 2.75Z\"\n fill=\"currentColor\"\n />\n <path d=\"M9 5V6H12V5H9Z\" fill=\"currentColor\" />\n <path d=\"M14 5V6H17V5H14Z\" fill=\"currentColor\" />\n <path\n d=\"M20 5H19V15.7953C17.7199 16.0305 16.75 17.152 16.75 18.5C16.75 20.0188 17.9812 21.25 19.5 21.25C21.0188 21.25 22.25 20.0188 22.25 18.5C22.25 17.152 21.2801 16.0305 20 15.7953V5Z\"\n fill=\"currentColor\"\n />\n <path d=\"M10 19V18H7V19H10Z\" fill=\"currentColor\" />\n <path d=\"M12 18V19H15V18H12Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconTextSelectDashed;\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,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iCACpCC,EAAA,cAAC,QACC,EAAE,6KACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,iBAAiB,KAAK,eAAe,EAC7CA,EAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,EAC/CA,EAAA,cAAC,QACC,EAAE,oLACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDA,EAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,CACpD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTextSelectDashed","props","React","CentralIconBase","IconTextSelectDashed_default"]}