{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFashion/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 IconFashion: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"fashion, wear, clothes, t-shirt\"><path d=\"M9.64121 3.52405C9.57547 3.31599 9.42239 3.14688 9.22189 3.06081C9.02138 2.97474 8.79334 2.98026 8.59723 3.07592L2.22525 6.18421C1.42486 6.57464 1.04532 7.50388 1.3435 8.34301L2.21628 10.2992C2.56015 11.2669 3.65953 11.7318 4.59341 11.3045L5.00105 11.118V19.25C5.00105 20.2165 5.78455 21 6.75105 21H17.2511C18.2176 21 19.0011 20.2165 19.0011 19.25V11.118L19.4087 11.3045C20.3426 11.7318 21.442 11.2669 21.7858 10.2992L22.6586 8.34301C22.9568 7.50388 22.5772 6.57464 21.7769 6.18421L15.4049 3.07592C15.2088 2.98026 14.9807 2.97474 14.7802 3.06081C14.5797 3.14688 14.4266 3.31599 14.3609 3.52405C13.9575 4.80087 12.9625 5.38674 12.0011 5.38674C11.0396 5.38674 10.0446 4.80087 9.64121 3.52405Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFashion;\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,gBAA4xB,EAA5xB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,qrBAAqrB,KAAK,eAAc,CAAI,GAGtxB",
  "debugId": "E327251E2EA7753B64756E2164756E21",
  "names": []
}