{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassSquare/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 IconCompassSquare: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"compass-square, browser, safari, web, internet, navigation\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 6.75C3 4.67893 4.67893 3 6.75 3H17.25C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 3 19.3211 3 17.25V6.75ZM14.5572 8.36844C15.2104 8.1903 15.8097 8.78965 15.6316 9.44283L14.5122 13.5474C14.3841 14.0171 14.0171 14.384 13.5474 14.5121L9.44286 15.6316C8.78968 15.8097 8.19033 15.2103 8.36847 14.5572L9.48789 10.4526C9.61599 9.98291 9.98294 9.61596 10.4527 9.48786L14.5572 8.36844Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassSquare;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA4kB,EAA5kB,IAAqB,EAAO,UAAU,8DAA6D,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oaAAoa,KAAK,eAAc,CAAI,GAGtkB",
  "debugId": "C1923B4A5F54480564756E2164756E21",
  "names": []
}