{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconConcise/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 IconConcise: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"concise, text-shorten, squeeze\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.46967 3.21967C8.76256 2.92678 9.23744 2.92678 9.53033 3.21967L12 5.68934L14.4697 3.21967C14.7626 2.92678 15.2374 2.92678 15.5303 3.21967C15.8232 3.51256 15.8232 3.98744 15.5303 4.28033L12.5303 7.28033C12.2374 7.57322 11.7626 7.57322 11.4697 7.28033L8.46967 4.28033C8.17678 3.98744 8.17678 3.51256 8.46967 3.21967ZM3 10.25C3 9.83579 3.33579 9.5 3.75 9.5H20.25C20.6642 9.5 21 9.83579 21 10.25C21 10.6642 20.6642 11 20.25 11H3.75C3.33579 11 3 10.6642 3 10.25ZM3 13.75C3 13.3358 3.33579 13 3.75 13H20.25C20.6642 13 21 13.3358 21 13.75C21 14.1642 20.6642 14.5 20.25 14.5H3.75C3.33579 14.5 3 14.1642 3 13.75ZM12 18.3107L9.53033 20.7803C9.23744 21.0732 8.76256 21.0732 8.46967 20.7803C8.17678 20.4874 8.17678 20.0126 8.46967 19.7197L11.4697 16.7197C11.7626 16.4268 12.2374 16.4268 12.5303 16.7197L15.5303 19.7197C15.8232 20.0126 15.8232 20.4874 15.5303 20.7803C15.2374 21.0732 14.7626 21.0732 14.4697 20.7803L12 18.3107Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconConcise;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAmiC,EAAniC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u5BAAu5B,KAAK,eAAc,CAAI,GAG7hC",
  "debugId": "547E9E24DBF97D6D64756E2164756E21",
  "names": []
}