{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageLock/index.tsx"],
  "sourcesContent": [
    "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",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageLock: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"page-lock\"><path d=\"M4 2.75C4 2.33579 4.33579 2 4.75 2H19.25C19.6642 2 20 2.33579 20 2.75V12.8131C19.2059 12.0028 18.0992 11.5 16.875 11.5C14.8312 11.5 13.1147 12.9014 12.6341 14.7958C11.9566 15.1835 11.5 15.9134 11.5 16.75V21.25C11.5 21.513 11.5451 21.7654 11.628 22H4.75C4.33579 22 4 21.6642 4 21.25V2.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 16.75C13 16.3358 13.3358 16 13.75 16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H20.25C20.6642 16 21 16.3358 21 16.75V21.25C21 21.6642 20.6642 22 20.25 22H13.75C13.3358 22 13 21.6642 13 21.25V16.75ZM14.5 17.5V20.5H19.5V17.5H14.5ZM18.5 16C18.5 15.1716 17.8284 14.5 17 14.5C16.1716 14.5 15.5 15.1716 15.5 16H18.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageLock;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAmwB,EAAnwB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,EAAE,kSAAkS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6UAA6U,KAAK,eAAc,CAAI,GAG7vB",
  "debugId": "985E6F3FE4E0986E64756E2164756E21",
  "names": []
}