{
  "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.64212 3.52996C9.57779 3.32033 9.42494 3.14936 9.2238 3.06204C9.02267 2.97471 8.79339 2.97979 8.59631 3.07592L1.42131 6.57592C1.07829 6.74325 0.91563 7.1415 1.04342 7.50112L2.58092 10.8279C2.65135 11.0261 2.80176 11.1856 2.99548 11.2676C3.18921 11.3495 3.40843 11.3463 3.59969 11.2588L5.00013 10.618V20.25C5.00013 20.6642 5.33592 21 5.75013 21H18.2501C18.6643 21 19.0001 20.6642 19.0001 20.25V10.618L20.4006 11.2588C20.5918 11.3463 20.8111 11.3495 21.0048 11.2676C21.1985 11.1856 21.3489 11.0261 21.4193 10.8279L22.9568 7.50112C23.0846 7.1415 22.922 6.74325 22.5789 6.57592L15.4039 3.07592C15.2069 2.97979 14.9776 2.97471 14.7765 3.06204C14.5753 3.14936 14.4225 3.32033 14.3581 3.52996C13.9517 4.85432 12.9503 5.44833 12.0001 5.44833C11.0499 5.44833 10.0486 4.85432 9.64212 3.52996Z\" 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,gBAA03B,EAA13B,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,mxBAAmxB,KAAK,eAAc,CAAI,GAGp3B",
  "debugId": "30A66662EC357EB264756E2164756E21",
  "names": []
}