{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowExpandVer/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 IconArrowExpandVer: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-expand-ver\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.1989 2 12.3897 2.07902 12.5303 2.21967L16.7803 6.46967C17.0732 6.76256 17.0732 7.23744 16.7803 7.53033C16.4874 7.82322 16.0126 7.82322 15.7197 7.53033L12.75 4.56064V19.4394L15.7197 16.4697C16.0126 16.1768 16.4874 16.1768 16.7803 16.4697C17.0732 16.7626 17.0732 17.2374 16.7803 17.5303L12.5303 21.7803C12.3897 21.921 12.1989 22 12 22C11.8011 22 11.6103 21.921 11.4697 21.7803L7.21967 17.5303C6.92678 17.2374 6.92678 16.7626 7.21967 16.4697C7.51256 16.1768 7.98744 16.1768 8.28033 16.4697L11.25 19.4393V4.56068L8.28033 7.53033C7.98744 7.82322 7.51256 7.82322 7.21967 7.53033C6.92678 7.23744 6.92678 6.76256 7.21967 6.46967L11.4697 2.21967C11.6103 2.07902 11.8011 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowExpandVer;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAsyB,EAAtyB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wqBAAwqB,KAAK,eAAc,CAAI,GAGhyB",
  "debugId": "8EFC371708910B5864756E2164756E21",
  "names": []
}