@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 • 2.65 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconUnlocked/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconUnlocked: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"unlocked, unlock, private\">\n <path\n d=\"M4.75 9.75V9H4V9.75H4.75ZM19.25 9.75H20V9H19.25V9.75ZM19.25 21.25V22H20V21.25H19.25ZM4.75 21.25H4V22H4.75V21.25ZM7 9.75V10.5H8.5V9.75H7ZM12.75 14V13.25H11.25V14H12.75ZM11.25 17V17.75H12.75V17H11.25ZM4.75 10.5H19.25V9H4.75V10.5ZM18.5 9.75V21.25H20V9.75H18.5ZM19.25 20.5H4.75V22H19.25V20.5ZM5.5 21.25V9.75H4V21.25H5.5ZM8.5 9.75V7H7V9.75H8.5ZM12 3.5C13.933 3.5 15.5 5.067 15.5 7H17C17 4.23858 14.7614 2 12 2V3.5ZM12 2C9.23858 2 7 4.23858 7 7H8.5C8.5 5.067 10.067 3.5 12 3.5V2ZM11.25 14V17H12.75V14H11.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnlocked;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,wfACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconUnlocked","props","React","CentralIconBase","IconUnlocked_default"]}