{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCornerRadius/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 IconCornerRadius: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"corner-radius, border-radius\"><path d=\"M3 20.25V16.5498C3 14.3221 2.99926 12.606 3.11133 11.2344C3.22412 9.85405 3.4553 8.75631 3.9541 7.77734L4.11719 7.47266C4.96144 5.96607 6.23401 4.74056 7.77734 3.9541L8.15039 3.7793C9.03524 3.39937 10.0265 3.21003 11.2344 3.11133C12.606 2.99926 14.3221 3 16.5498 3H20.25C20.6642 3 21 3.33579 21 3.75C21 4.16421 20.6642 4.5 20.25 4.5H16.5498C14.2973 4.5 12.6528 4.50053 11.3564 4.60645C10.2297 4.69852 9.41653 4.86743 8.74023 5.1582L8.45898 5.29004C7.18007 5.94168 6.12536 6.95761 5.42578 8.20605L5.29004 8.45898C4.91707 9.19116 4.71164 10.0692 4.60645 11.3564C4.50053 12.6528 4.5 14.2973 4.5 16.5498V20.25C4.5 20.6642 4.16421 21 3.75 21C3.33579 21 3 20.6642 3 20.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCornerRadius;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAiwB,EAAjwB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,6pBAA6pB,KAAK,eAAc,CAAI,GAG3vB",
  "debugId": "C36C62607CC4407C64756E2164756E21",
  "names": []
}