UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

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

1 lines 3.2 kB
{"version":3,"sources":["../src/IconPasswordStars/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPasswordStars: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"password-stars\">\n <path d=\"M23 18H1V16.5H23V18Z\" fill=\"currentColor\" />\n <path\n d=\"M6.14941 7.77637L5.29883 9.24902H7V10.749H5.29883L6.14941 12.2227L4.85059 12.9727L4 11.499L3.14941 12.9727L1.85059 12.2227L2.70117 10.749H1V9.24902H2.70117L1.85059 7.77637L3.14941 7.02637L4 8.49902L4.85059 7.02637L6.14941 7.77637Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.1494 7.77637L13.2988 9.24902H15V10.749H13.2988L14.1494 12.2227L12.8506 12.9727L12 11.499L11.1494 12.9727L9.85059 12.2227L10.7012 10.749H9V9.24902H10.7012L9.85059 7.77637L11.1494 7.02637L12 8.49902L12.8506 7.02637L14.1494 7.77637Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M22.1494 7.77637L21.2988 9.24902H23V10.749H21.2988L22.1494 12.2227L20.8506 12.9727L20 11.499L19.1494 12.9727L17.8506 12.2227L18.7012 10.749H17V9.24902H18.7012L17.8506 7.77637L19.1494 7.02637L20 8.49902L20.8506 7.02637L22.1494 7.77637Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPasswordStars;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kBACpCC,EAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDA,EAAA,cAAC,QACC,EAAE,yOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6OACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPasswordStars","props","React","CentralIconBase","IconPasswordStars_default"]}