{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPencilLine/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 IconPencilLine: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pencil-line, signature, write\"><path d=\"M17.5303 2.21967C17.2374 1.92678 16.7626 1.92678 16.4697 2.21967L2.21967 16.4697C2.07902 16.6103 2 16.8011 2 17V21.25C2 21.6642 2.33579 22 2.75 22H7C7.19891 22 7.38968 21.921 7.53033 21.7803L21.7803 7.53033C22.0732 7.23744 22.0732 6.76256 21.7803 6.46967L17.5303 2.21967Z\" fill=\"currentColor\"/><path d=\"M12.75 20.5C12.3358 20.5 12 20.8358 12 21.25C12 21.6642 12.3358 22 12.75 22H21.25C21.6642 22 22 21.6642 22 21.25C22 20.8358 21.6642 20.5 21.25 20.5H12.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPencilLine;\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,gBAAijB,EAAjjB,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6JAA6J,KAAK,eAAc,CAAI,GAG3iB",
  "debugId": "B9A6917091E755A864756E2164756E21",
  "names": []
}