{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareX/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 IconSquareX: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-x, close, x, checkbox, remove\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.32379 3C5.06632 2.99998 4.8298 2.99997 4.63213 3.01612C4.419 3.03353 4.18583 3.0734 3.95552 3.19074C3.62624 3.35852 3.35852 3.62624 3.19074 3.95552C3.07339 4.18583 3.03353 4.419 3.01612 4.63213C2.99997 4.8298 2.99998 5.06627 3 5.32373V18.6762C2.99998 18.9337 2.99997 19.1702 3.01612 19.3679C3.03353 19.581 3.0734 19.8142 3.19074 20.0445C3.35852 20.3738 3.62624 20.6415 3.95552 20.8093C4.18583 20.9266 4.419 20.9665 4.63213 20.9839C4.82981 21 5.06629 21 5.32377 21H18.6762C18.9337 21 19.1702 21 19.3679 20.9839C19.581 20.9665 19.8142 20.9266 20.0445 20.8093C20.3738 20.6415 20.6415 20.3738 20.8093 20.0445C20.9266 19.8142 20.9665 19.581 20.9839 19.3679C21 19.1702 21 18.9337 21 18.6762V5.32377C21 5.06629 21 4.82981 20.9839 4.63213C20.9665 4.419 20.9266 4.18583 20.8093 3.95552C20.6415 3.62624 20.3738 3.35852 20.0445 3.19074C19.8142 3.07339 19.581 3.03353 19.3679 3.01612C19.1702 2.99997 18.9337 2.99998 18.6763 3H5.32379ZM9.53033 8.46967C9.23744 8.17678 8.76257 8.17678 8.46967 8.46967C8.17678 8.76256 8.17678 9.23744 8.46967 9.53033L10.9393 12L8.46967 14.4697C8.17678 14.7626 8.17678 15.2374 8.46967 15.5303C8.76257 15.8232 9.23744 15.8232 9.53033 15.5303L12 13.0607L14.4697 15.5303C14.7626 15.8232 15.2374 15.8232 15.5303 15.5303C15.8232 15.2374 15.8232 14.7626 15.5303 14.4697L13.0607 12L15.5303 9.53033C15.8232 9.23744 15.8232 8.76256 15.5303 8.46967C15.2374 8.17678 14.7626 8.17678 14.4697 8.46967L12 10.9393L9.53033 8.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareX;\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,gBAA+iD,EAA/iD,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,65CAA65C,KAAK,eAAc,CAAI,GAGziD",
  "debugId": "F829118EAEF338A164756E2164756E21",
  "names": []
}