{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEnter/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 IconEnter: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"enter, return, keyboard, submit, confirm\"><path d=\"M17 4C18.6569 4 20 5.34315 20 7V11V17C20 18.6569 18.6569 20 17 20H11H7C5.34315 20 4 18.6569 4 17L4 13C4 11.3431 5.34315 10 7 10H8C9.10457 10 10 9.10457 10 8V7C10 5.34315 11.3431 4 13 4L17 4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15 10.5V13C15 14.1046 14.1046 15 13 15H10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.1175 12.9518L7.70569 14.6745C7.48235 14.834 7.48235 15.166 7.70569 15.3255L10.1175 17.0482C10.3823 17.2373 10.75 17.0481 10.75 16.7227V15V13.2773C10.75 12.9519 10.3823 12.7627 10.1175 12.9518Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEnter;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA+tB,EAA/tB,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,EAAE,iMAAiM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGztB",
  "debugId": "4C4256D51256E61A64756E2164756E21",
  "names": []
}