@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.78 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconCmdBox/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCmdBox: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cmd-box, command, apple, key\">\n <path\n d=\"M9.5 8.25V9.4375H8.21875C7.54565 9.4375 7 8.89185 7 8.21875C7 7.55147 7.55529 7 8.23423 7C8.93044 7 9.5 7.56546 9.5 8.25Z\"\n fill=\"currentColor\"\n />\n <path d=\"M10.5 13.5V10.4375H13.5V13.5H10.5Z\" fill=\"currentColor\" />\n <path\n d=\"M8.25 14.5H9.5V15.75C9.5 16.4404 8.94036 17 8.25 17C7.55964 17 7 16.4404 7 15.75C7 15.0596 7.55964 14.5 8.25 14.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.5 15.75V14.5H15.75C16.4404 14.5 17 15.0596 17 15.75C17 16.4404 16.4404 17 15.75 17C15.0596 17 14.5 16.4404 14.5 15.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.7812 9.4375H14.5V8.25C14.5 7.56546 15.0696 7 15.7658 7C16.4447 7 17 7.55147 17 8.21875C17 8.89185 16.4543 9.4375 15.7812 9.4375Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 3H3V21H21V3ZM8.23423 6C7.0147 6 6 6.98756 6 8.21875C6 9.44413 6.99337 10.4375 8.21875 10.4375H9.5V13.5H8.25C7.00736 13.5 6 14.5074 6 15.75C6 16.9926 7.00736 18 8.25 18C9.49264 18 10.5 16.9926 10.5 15.75V14.5H13.5V15.75C13.5 16.9926 14.5074 18 15.75 18C16.9926 18 18 16.9926 18 15.75C18 14.5074 16.9926 13.5 15.75 13.5H14.5V10.4375H15.7812C17.0066 10.4375 18 9.44413 18 8.21875C18 6.98756 16.9853 6 15.7658 6C14.529 6 13.5 7.00155 13.5 8.25V9.4375H10.5V8.25C10.5 7.00155 9.47103 6 8.23423 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCmdBox;\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,gCACpCC,EAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEA,EAAA,cAAC,QACC,EAAE,qHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6HACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ifACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCmdBox","props","React","CentralIconBase","IconCmdBox_default"]}