{
  "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.64268 3.52996C9.57834 3.32033 9.42549 3.14936 9.22436 3.06204C9.02322 2.97471 8.79394 2.97979 8.59686 3.07592L3.27922 5.6699C1.87833 6.35326 1.21403 7.97968 1.73592 9.4484C2.23012 10.8391 3.61583 11.6366 5.00068 11.4634V17.25C5.00068 19.3211 6.67961 21 8.75068 21H15.2507C17.3218 21 19.0007 19.3211 19.0007 17.25V11.4634C20.3855 11.6366 21.7712 10.8391 22.2654 9.4484C22.7873 7.97968 22.123 6.35326 20.7221 5.6699L15.4045 3.07592C15.2074 2.97979 14.9781 2.97471 14.777 3.06204C14.5759 3.14936 14.423 3.32033 14.3587 3.52996C13.9522 4.85432 12.9509 5.44833 12.0007 5.44833C11.0505 5.44833 10.0491 4.85432 9.64268 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,gBAAytB,EAAztB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,knBAAknB,KAAK,eAAc,CAAI,GAGntB",
  "debugId": "06EC0C4CA82B59A364756E2164756E21",
  "names": []
}