{"version":3,"sources":["../../src/Grid/GridList.tsx"],"sourcesContent":["import React, { FC, HTMLAttributes } from 'react';\nimport classname from 'classnames';\n\nexport interface GridListProps extends HTMLAttributes<HTMLSpanElement> {\n  /** Classi aggiuntive da usare per il componente LinkListItem */\n  className?: string;\n  testId?: string;\n}\n\nexport const GridList: FC<GridListProps> = ({ className, children, testId, ...attributes }) => {\n  const classes = classname('it-grid-list-wrapper', className);\n  return (\n    <div {...attributes} className={classes} data-testid={testId}>\n      {children}\n    </div>\n  );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,cAAAE,IAAA,eAAAC,EAAAH,GAAA,IAAAI,EAA0C,sBAC1CC,EAAsB,2BAQTH,EAA8B,CAAC,CAAE,UAAAI,EAAW,SAAAC,EAAU,OAAAC,EAAQ,GAAGC,CAAW,IAAM,CAC7F,IAAMC,KAAU,EAAAC,SAAU,uBAAwBL,CAAS,EAC3D,OACE,EAAAM,QAAA,cAAC,OAAK,GAAGH,EAAY,UAAWC,EAAS,cAAaF,GACnDD,CACH,CAEJ","names":["GridList_exports","__export","GridList","__toCommonJS","import_react","import_classnames","className","children","testId","attributes","classes","classname","React"]}