{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTextMotion/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 IconTextMotion: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"text-motion, text-animation\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.5 4C15.8075 4 16.0838 4.18769 16.1972 4.47353L21.9472 18.9735C22.0999 19.3586 21.9115 19.7945 21.5265 19.9472C21.1414 20.0999 20.7055 19.9115 20.5528 19.5265L18.7578 15C18.7552 15 18.7526 15 18.75 15H12.25C12.2474 15 12.2448 15 12.2422 15L10.4472 19.5265C10.2945 19.9115 9.85857 20.0999 9.47353 19.9472C9.08849 19.7945 8.90013 19.3586 9.05282 18.9735L14.8028 4.47353C14.9162 4.18769 15.1925 4 15.5 4ZM12.837 13.5H18.163L15.5 6.78458L12.837 13.5ZM5 6.75C5 6.33579 5.33579 6 5.75 6H10.25C10.6642 6 11 6.33579 11 6.75C11 7.16421 10.6642 7.5 10.25 7.5H5.75C5.33579 7.5 5 7.16421 5 6.75ZM2 12C2 11.5858 2.33579 11.25 2.75 11.25H8.25C8.66421 11.25 9 11.5858 9 12C9 12.4142 8.66421 12.75 8.25 12.75H2.75C2.33579 12.75 2 12.4142 2 12ZM3 17.25C3 16.8358 3.33579 16.5 3.75 16.5H6.25C6.66421 16.5 7 16.8358 7 17.25C7 17.6642 6.66421 18 6.25 18H3.75C3.33579 18 3 17.6642 3 17.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTextMotion;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAm/B,EAAn/B,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,02BAA02B,KAAK,eAAc,CAAI,GAG7+B",
  "debugId": "BDF19E376BDC9C5664756E2164756E21",
  "names": []
}