UNPKG

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

Version:

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

1 lines 3.72 kB
{"version":3,"sources":["../src/IconWindowSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"window-sparkle, whisper, api, app, software\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2 4H22V9H20.5V5.5H3.5V18.5H11V20H2V4ZM13 16.75V15.25C14.6446 15.25 15.6575 14.886 16.2718 14.2718C16.886 13.6575 17.25 12.6446 17.25 11H18.75C18.75 12.6446 19.114 13.6575 19.7282 14.2718C20.3425 14.886 21.3554 15.25 23 15.25V16.75C21.3554 16.75 20.3425 17.114 19.7282 17.7282C19.114 18.3425 18.75 19.3554 18.75 21H17.25C17.25 19.3554 16.886 18.3425 16.2718 17.7282C15.6575 17.114 14.6446 16.75 13 16.75ZM18 17.5459C18.184 17.2234 18.4053 16.9299 18.6676 16.6676C18.9299 16.4052 19.2234 16.184 19.5459 16C19.2234 15.816 18.9299 15.5948 18.6676 15.3324C18.4053 15.0701 18.184 14.7766 18 14.4541C17.816 14.7766 17.5948 15.0701 17.3324 15.3324C17.0701 15.5948 16.7766 15.816 16.4541 16C16.7766 16.184 17.0701 16.4052 17.3324 16.6676C17.5948 16.9299 17.816 17.2234 18 17.5459Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7 8C7 8.55228 6.55228 9 6 9C5.44772 9 5 8.55228 5 8C5 7.44772 5.44772 7 6 7C6.55228 7 7 7.44772 7 8Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10 8C10 8.55228 9.55228 9 9 9C8.44772 9 8 8.55228 8 8C8 7.44772 8.44772 7 9 7C9.55228 7 10 7.44772 10 8Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWindowSparkle;\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,CACE,GAAGF,EACJ,UAAU,+CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uwBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iHACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconWindowSparkle","props","React","CentralIconBase","IconWindowSparkle_default"]}