{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRewrite1/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 IconRewrite1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"rewrite-1, resummarize, text-edit\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.21967 2.46967C6.51257 2.17678 6.98744 2.17678 7.28033 2.46967L9.03033 4.21967C9.32323 4.51256 9.32323 4.98744 9.03033 5.28033L7.28033 7.03033C6.98744 7.32322 6.51257 7.32322 6.21967 7.03033C5.92678 6.73744 5.92678 6.26256 6.21967 5.96967L6.68934 5.5H4.35C4.0576 5.5 3.88341 5.50058 3.75428 5.51113C3.67547 5.51757 3.64234 5.52607 3.63347 5.52882C3.58883 5.55234 3.55235 5.58882 3.52883 5.63346C3.52607 5.64234 3.51757 5.67547 3.51114 5.75428C3.50059 5.8834 3.5 6.0576 3.5 6.35V17.65C3.5 17.9424 3.50059 18.1166 3.51114 18.2457C3.51757 18.3245 3.52607 18.3577 3.52883 18.3665C3.55235 18.4112 3.58883 18.4477 3.63347 18.4712C3.64235 18.4739 3.67547 18.4824 3.75428 18.4889C3.88341 18.4994 4.0576 18.5 4.35 18.5H11.25C11.6642 18.5 12 18.8358 12 19.25C12 19.6642 11.6642 20 11.25 20H4.32377C4.06629 20 3.82981 20 3.63213 19.9839C3.419 19.9665 3.18583 19.9266 2.95552 19.8093C2.62624 19.6415 2.35852 19.3738 2.19074 19.0445C2.07339 18.8142 2.03353 18.581 2.01612 18.3679C1.99997 18.1702 1.99998 17.9337 2 17.6762V6.32378C1.99998 6.0663 1.99997 5.82981 2.01612 5.63213C2.03353 5.419 2.07339 5.18582 2.19074 4.95552C2.35852 4.62623 2.62624 4.35852 2.95552 4.19074C3.18583 4.07339 3.419 4.03353 3.63213 4.01612C3.82982 3.99996 4.0663 3.99998 4.32379 4C4.3325 4 4.34124 4 4.35 4H6.68934L6.21967 3.53033C5.92678 3.23744 5.92678 2.76256 6.21967 2.46967ZM3.63088 18.4703C3.63091 18.4703 3.63143 18.4704 3.63236 18.4708L3.63088 18.4703ZM3.52973 18.3691C3.52972 18.3692 3.52953 18.3687 3.52918 18.3676L3.52973 18.3691ZM3.52973 5.63087C3.52974 5.6309 3.52956 5.63144 3.52917 5.63239L3.52973 5.63087ZM3.63239 5.52917C3.63144 5.52956 3.63091 5.52974 3.63088 5.52973L3.63239 5.52917ZM20.2457 5.51113C20.1166 5.50058 19.9424 5.5 19.65 5.5H12.75C12.3358 5.5 12 5.16421 12 4.75C12 4.33579 12.3358 4 12.75 4L19.6762 4C19.9337 3.99998 20.1702 3.99996 20.3679 4.01612C20.581 4.03353 20.8142 4.07339 21.0445 4.19074C21.3738 4.35852 21.6415 4.62623 21.8093 4.95552C21.9266 5.18582 21.9665 5.419 21.9839 5.63213C22 5.82981 22 6.06629 22 6.32377V17.6762C22 17.9337 22 18.1702 21.9839 18.3679C21.9665 18.581 21.9266 18.8142 21.8093 19.0445C21.6415 19.3738 21.3738 19.6415 21.0445 19.8093C20.8142 19.9266 20.581 19.9665 20.3679 19.9839C20.1702 20 19.9337 20 19.6762 20H17.3107L17.7803 20.4697C18.0732 20.7626 18.0732 21.2374 17.7803 21.5303C17.4874 21.8232 17.0126 21.8232 16.7197 21.5303L14.9697 19.7803C14.6768 19.4874 14.6768 19.0126 14.9697 18.7197L16.7197 16.9697C17.0126 16.6768 17.4874 16.6768 17.7803 16.9697C18.0732 17.2626 18.0732 17.7374 17.7803 18.0303L17.3107 18.5H19.65C19.9424 18.5 20.1166 18.4994 20.2457 18.4889C20.3245 18.4824 20.3577 18.4739 20.3665 18.4712C20.4112 18.4477 20.4477 18.4112 20.4712 18.3665C20.4739 18.3577 20.4824 18.3245 20.4889 18.2457C20.4994 18.1166 20.5 17.9424 20.5 17.65V6.35C20.5 6.0576 20.4994 5.8834 20.4889 5.75428C20.4824 5.67545 20.4739 5.64233 20.4712 5.63346C20.4477 5.58882 20.4112 5.55234 20.3665 5.52882C20.3577 5.52607 20.3245 5.51757 20.2457 5.51113ZM20.3691 5.52973C20.3691 5.52973 20.3686 5.52956 20.3677 5.52918L20.3691 5.52973ZM20.4703 5.63087C20.4703 5.63085 20.4705 5.63131 20.4708 5.63236L20.4703 5.63087ZM8 10C8 9.58579 8.33579 9.25 8.75 9.25H15.25C15.6642 9.25 16 9.58579 16 10C16 10.4142 15.6642 10.75 15.25 10.75H8.75C8.33579 10.75 8 10.4142 8 10ZM8 14C8 13.5858 8.33579 13.25 8.75 13.25H13.25C13.6642 13.25 14 13.5858 14 14C14 14.4142 13.6642 14.75 13.25 14.75H8.75C8.33579 14.75 8 14.4142 8 14Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRewrite1;\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,gBAA6/G,EAA7/G,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,82GAA82G,KAAK,eAAc,CAAI,GAGv/G",
  "debugId": "7FA82CA69948489864756E2164756E21",
  "names": []
}