{"version":3,"sources":["../src/IconListBullets/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconListBullets: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"list-bullets\">\n      <path\n        d=\"M4.2002 16.7998C4.86285 16.7999 5.40039 17.3373 5.40039 18C5.40029 18.6626 4.86278 19.2001 4.2002 19.2002C3.53752 19.2002 3.00011 18.6627 3 18C3 17.3373 3.53745 16.7998 4.2002 16.7998Z\"\n        fill=\"currentColor\"\n      />\n      <path d=\"M21 18.75H8V17.25H21V18.75Z\" fill=\"currentColor\" />\n      <path\n        d=\"M4.2002 10.7998C4.86285 10.7999 5.40039 11.3373 5.40039 12C5.40029 12.6626 4.86278 13.2001 4.2002 13.2002C3.53752 13.2002 3.00011 12.6627 3 12C3 11.3373 3.53745 10.7998 4.2002 10.7998Z\"\n        fill=\"currentColor\"\n      />\n      <path d=\"M21 12.75H8V11.25H21V12.75Z\" fill=\"currentColor\" />\n      <path\n        d=\"M4.2002 4.7998C4.86285 4.79991 5.40039 5.33732 5.40039 6C5.40029 6.66259 4.86278 7.20009 4.2002 7.2002C3.53752 7.2002 3.00011 6.66265 3 6C3 5.33726 3.53745 4.7998 4.2002 4.7998Z\"\n        fill=\"currentColor\"\n      />\n      <path d=\"M21 6.75H8V5.25H21V6.75Z\" fill=\"currentColor\" />\n    </CentralIconBase>\n  );\n};\n\nexport default IconListBullets;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,EAAE,2LACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,8BAA8B,KAAK,eAAe,EAC1DA,EAAA,cAAC,QACC,EAAE,2LACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,8BAA8B,KAAK,eAAe,EAC1DA,EAAA,cAAC,QACC,EAAE,oLACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,2BAA2B,KAAK,eAAe,CACzD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}